summaryrefslogtreecommitdiff
path: root/indra/newview/llnearbychatbar.cpp
diff options
context:
space:
mode:
authorEugene Mutavchi <emutavchi@productengine.com>2010-01-13 13:44:44 +0200
committerEugene Mutavchi <emutavchi@productengine.com>2010-01-13 13:44:44 +0200
commitc63c9656fc9fd1e6dd80d4fa6ff3138d32ca5e4e (patch)
tree1db050ef550acdbc8a35345fae995be74980278a /indra/newview/llnearbychatbar.cpp
parente6c2b2b87cd8b90116a3eb7bfb01b3efce6d6ba2 (diff)
Fixed low bug EXT-4189 (Pressing Gesture button by SPACE/ENTER key doesn't open gestures list)
--HG-- branch : product-engine
Diffstat (limited to 'indra/newview/llnearbychatbar.cpp')
-rw-r--r--indra/newview/llnearbychatbar.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llnearbychatbar.cpp b/indra/newview/llnearbychatbar.cpp
index 8dbaa5ac53..75c2fb07d1 100644
--- a/indra/newview/llnearbychatbar.cpp
+++ b/indra/newview/llnearbychatbar.cpp
@@ -83,6 +83,9 @@ LLGestureComboBox::LLGestureComboBox(const LLGestureComboBox::Params& p)
// This forces using of halign from xml, since LLComboBox
// sets it to LLFontGL::LEFT, if text entry is disabled
mButton->setHAlign(p.drop_down_button.font_halign);
+
+ // Pressing Gesture button by SPACE/ENTER key should open gestures list
+ mButton->setCommitCallback(boost::bind(&LLComboBox::onButtonMouseDown, this));
}
LLGestureComboBox::~LLGestureComboBox()