Skip to content
Snippets Groups Projects
Commit b2f0169a authored by Eugene Mutavchi's avatar Eugene Mutavchi
Browse files

Fixed normal bug EXT-4627(Nearby Chat floater in Mouselook breaks ability to type & use gestures)

--HG--
branch : product-engine
parent 3fa2acc0
No related branches found
No related tags found
No related merge requests found
...@@ -80,6 +80,14 @@ public: ...@@ -80,6 +80,14 @@ public:
{ {
mNearbyChatBar = getChild<LLNearbyChatBar>("chat_bar"); mNearbyChatBar = getChild<LLNearbyChatBar>("chat_bar");
mGesturePanel = getChild<LLPanel>("gesture_panel"); 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; return TRUE;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment