summaryrefslogtreecommitdiff
path: root/indra/llui/llmenugl.cpp
diff options
context:
space:
mode:
authorandreykproductengine <akleshchev@productengine.com>2015-09-07 17:42:42 +0300
committerandreykproductengine <akleshchev@productengine.com>2015-09-07 17:42:42 +0300
commit76165eed99d3662d2dcfd31eaa8e4203f04e3e48 (patch)
treee2f9e5effabfcca0051e36b554d953ba3fc350c8 /indra/llui/llmenugl.cpp
parentcebfad26175affa600a372f96618e42c2a99c74b (diff)
MAINT-839 added double click 'support'
Diffstat (limited to 'indra/llui/llmenugl.cpp')
-rwxr-xr-xindra/llui/llmenugl.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp
index 3b8d282445..848367f8a8 100755
--- a/indra/llui/llmenugl.cpp
+++ b/indra/llui/llmenugl.cpp
@@ -3394,6 +3394,11 @@ BOOL LLMenuBarGL::handleMouseDown(S32 x, S32 y, MASK mask)
return LLMenuGL::handleMouseDown(x, y, mask);
}
+BOOL LLMenuBarGL::handleDoubleClick(S32 x, S32 y, MASK mask)
+{
+ return LLMenuGL::handleMouseDown(x, y, mask);
+}
+
void LLMenuBarGL::draw()
{
LLMenuItemGL* itemp = getHighlightedItem();