diff options
author | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-01-06 18:20:42 +0200 |
---|---|---|
committer | Mnikolenko ProductEngine <mnikolenko@productengine.com> | 2015-01-06 18:20:42 +0200 |
commit | a555f635da29262a543ec2828a311e3f98a8ebdb (patch) | |
tree | 01e7d21fe2bc27c980074d98a0d0a1125a23dd0c | |
parent | c7c62b96502a7afc96e58272081b9d70a8260483 (diff) |
MAINT-729 FIXED Hide popup menu (which belongs to old chiclet) when new chiclet arrives.
-rwxr-xr-x | indra/newview/llchiclet.cpp | 8 | ||||
-rwxr-xr-x | indra/newview/llchiclet.h | 2 | ||||
-rwxr-xr-x | indra/newview/llscriptfloater.cpp | 1 |
3 files changed, 11 insertions, 0 deletions
diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index c0823182c0..46b7679915 100755 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -376,6 +376,14 @@ BOOL LLIMChiclet::handleRightMouseDown(S32 x, S32 y, MASK mask) return TRUE; } +void LLIMChiclet::hidePopupMenu() +{ + if (mPopupMenu) + { + mPopupMenu->setVisible(FALSE); + } +} + bool LLIMChiclet::canCreateMenu() { if(mPopupMenu) diff --git a/indra/newview/llchiclet.h b/indra/newview/llchiclet.h index d5e3a55fdf..9201c6bc00 100755 --- a/indra/newview/llchiclet.h +++ b/indra/newview/llchiclet.h @@ -305,6 +305,8 @@ public: */ virtual BOOL handleRightMouseDown(S32 x, S32 y, MASK mask); + void hidePopupMenu(); + protected: LLIMChiclet(const LLIMChiclet::Params& p); diff --git a/indra/newview/llscriptfloater.cpp b/indra/newview/llscriptfloater.cpp index 590a1c2647..1d021ec28f 100755 --- a/indra/newview/llscriptfloater.cpp +++ b/indra/newview/llscriptfloater.cpp @@ -378,6 +378,7 @@ void LLScriptFloaterManager::onAddNotification(const LLUUID& notification_id) { // Pass the new_message icon state further. set_new_message = chicletp->getShowNewMessagesIcon(); + chicletp->hidePopupMenu(); } } |