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/llui.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/llui.cpp')
-rw-r--r-- | indra/llui/llui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/llui.cpp b/indra/llui/llui.cpp index 137716743f..31ccec0d2a 100644 --- a/indra/llui/llui.cpp +++ b/indra/llui/llui.cpp @@ -2049,7 +2049,7 @@ void LLUI::positionViewNearMouse(LLView* view, S32 spawn_x, S32 spawn_y) // Start at spawn position (using left/top) view->setOrigin( local_x, local_y - view->getRect().getHeight()); // Make sure we're on-screen and not overlapping the mouse - view->translateIntoRectWithExclusion( virtual_window_rect, mouse_rect, FALSE ); + view->translateIntoRectWithExclusion( virtual_window_rect, mouse_rect ); } LLView* LLUI::resolvePath(LLView* context, const std::string& path) |