diff options
author | Richard Linden <none@none> | 2012-02-09 17:50:09 -0800 |
---|---|---|
committer | Richard Linden <none@none> | 2012-02-09 17:50:09 -0800 |
commit | 45e30f35dc1a3dc07862ca9f67bbbdb238d364fe (patch) | |
tree | be365c3df26f923dee151a4e3b9c1f6030c2a376 /indra/llui/llmenugl.cpp | |
parent | e9ee15d9420d8987028ec0267ac5d1f46a918b6f (diff) |
EXP-1883 FIX Toolbar button tooltips display off screen for right hand tool bar, bottom tool bar, and tooltips on top bar items show off screen
Diffstat (limited to 'indra/llui/llmenugl.cpp')
-rw-r--r-- | indra/llui/llmenugl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llmenugl.cpp b/indra/llui/llmenugl.cpp index 1284231e52..ff6928ffda 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -3082,7 +3082,7 @@ void LLMenuGL::showPopup(LLView* spawning_view, LLMenuGL* menu, S32 x, S32 y) mouse_y + MOUSE_CURSOR_PADDING, CURSOR_WIDTH + MOUSE_CURSOR_PADDING * 2, CURSOR_HEIGHT + MOUSE_CURSOR_PADDING * 2); - menu->translateIntoRectWithExclusion( menu_region_rect, mouse_rect, FALSE ); + menu->translateIntoRectWithExclusion( menu_region_rect, mouse_rect ); menu->getParent()->sendChildToFront(menu); } |