diff options
author | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-01-06 15:12:09 +0200 |
---|---|---|
committer | Yuri Chebotarev <ychebotarev@productengine.com> | 2010-01-06 15:12:09 +0200 |
commit | c0d189a3d1496da697b1b9878cf00de28f8df77d (patch) | |
tree | 283c13712991e055f06ecd29dd7b6fbcd15f69a6 | |
parent | 4a333f37317e6a793c953e0db6465bb8b6ec164c (diff) |
fix for low EXT-2742 Invalid menu appearance after hiding navigation bar and/or favorites bar
actually that was designed behavior.
--HG--
branch : product-engine
-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 2648cbf08d..abcc0010c0 100644 --- a/indra/llui/llmenugl.cpp +++ b/indra/llui/llmenugl.cpp @@ -2959,7 +2959,7 @@ void LLMenuGL::showPopup(LLView* spawning_view, LLMenuGL* menu, S32 x, S32 y) LLUI::getMousePositionLocal(menu->getParent(), &mouse_x, &mouse_y); LLMenuHolderGL::sContextMenuSpawnPos.set(mouse_x,mouse_y); - const LLRect menu_region_rect = LLMenuGL::sMenuContainer->getMenuRect(); + const LLRect menu_region_rect = LLMenuGL::sMenuContainer->getRect(); const S32 HPAD = 2; LLRect rect = menu->getRect(); |