diff options
author | Paul ProductEngine <pguslisty@productengine.com> | 2011-03-10 14:21:35 +0200 |
---|---|---|
committer | Paul ProductEngine <pguslisty@productengine.com> | 2011-03-10 14:21:35 +0200 |
commit | b6e6ba224620e0b122062c88f40295c10ce8db2d (patch) | |
tree | ed2a2130990b9a30aa1841f226f322880eb62212 /indra | |
parent | 0c02401498521f87d38778df0e795960aa5445e1 (diff) |
STORM-357 FIXED Gestures button is in the pressed state after drag-n-drop but gestures list isn't visible.
- Because the Gesture Combo List isn't child of gViewerWindow->getNonSideTrayView(), after focus lost the gesture list becomes hidden under world.
To avoid this, send child to front in each draw.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llnearbychatbar.cpp | 11 | ||||
-rw-r--r-- | indra/newview/llnearbychatbar.h | 2 |
2 files changed, 13 insertions, 0 deletions
diff --git a/indra/newview/llnearbychatbar.cpp b/indra/newview/llnearbychatbar.cpp index 836ae9a0cf..162e465fef 100644 --- a/indra/newview/llnearbychatbar.cpp +++ b/indra/newview/llnearbychatbar.cpp @@ -157,6 +157,16 @@ BOOL LLGestureComboList::handleKeyHere(KEY key, MASK mask) return handled; } +void LLGestureComboList::draw() +{ + LLUICtrl::draw(); + + if(mButton->getToggleState()) + { + showList(); + } +} + void LLGestureComboList::showList() { LLRect rect = mList->getRect(); @@ -180,6 +190,7 @@ void LLGestureComboList::showList() // Show the list and push the button down mButton->setToggleState(TRUE); mList->setVisible(TRUE); + sendChildToFront(mList); LLUI::addPopup(mList); } diff --git a/indra/newview/llnearbychatbar.h b/indra/newview/llnearbychatbar.h index 033d1dd5a2..96ab45071b 100644 --- a/indra/newview/llnearbychatbar.h +++ b/indra/newview/llnearbychatbar.h @@ -72,6 +72,8 @@ public: virtual void hideList(); virtual BOOL handleKeyHere(KEY key, MASK mask); + virtual void draw(); + S32 getCurrentIndex() const; void onItemSelected(const LLSD& data); void sortByName(bool ascending = true); |