diff options
author | Eugene Mutavchi <emutavchi@productengine.com> | 2010-02-04 20:40:30 +0200 |
---|---|---|
committer | Eugene Mutavchi <emutavchi@productengine.com> | 2010-02-04 20:40:30 +0200 |
commit | b2f0169a764119ad6b51ad0df964309ca7458278 (patch) | |
tree | 93b2a2057f021366b38cc32d22f3e0d8268d2d8a /indra/newview | |
parent | 3fa2acc0df76b3dd81e295a28bfb463f863a9e49 (diff) |
Fixed normal bug EXT-4627(Nearby Chat floater in Mouselook breaks ability to type & use gestures)
--HG--
branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llbottomtray.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/llbottomtray.cpp b/indra/newview/llbottomtray.cpp index 4c8cec3d30..92c00efe99 100644 --- a/indra/newview/llbottomtray.cpp +++ b/indra/newview/llbottomtray.cpp @@ -80,6 +80,14 @@ public: { mNearbyChatBar = getChild<LLNearbyChatBar>("chat_bar"); mGesturePanel = getChild<LLPanel>("gesture_panel"); + + // Hide "show_nearby_chat" button + LLLineEditor* chat_box = mNearbyChatBar->getChatBox(); + LLUICtrl* show_btn = mNearbyChatBar->getChild<LLUICtrl>("show_nearby_chat"); + S32 delta_width = show_btn->getRect().getWidth(); + show_btn->setVisible(FALSE); + chat_box->reshape(chat_box->getRect().getWidth() + delta_width, chat_box->getRect().getHeight()); + return TRUE; } |