diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2023-03-16 21:45:41 +0200 |
---|---|---|
committer | akleshchev <117672381+akleshchev@users.noreply.github.com> | 2023-03-16 22:18:08 +0200 |
commit | cb66156a72ad02ce937763a4439de32d05fc10d5 (patch) | |
tree | c978404f65c51b5c77cae5267eb34c090291f249 | |
parent | 02a3df31cee5d047dd5ff535b7c6612e37989337 (diff) |
SL-19105 Fix menu's opening position
-rw-r--r-- | indra/newview/llpanelmaininventory.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/indra/newview/llpanelmaininventory.cpp b/indra/newview/llpanelmaininventory.cpp index f8c1fcb5f5..9fab6e4d2e 100644 --- a/indra/newview/llpanelmaininventory.cpp +++ b/indra/newview/llpanelmaininventory.cpp @@ -1457,8 +1457,7 @@ void LLPanelMainInventory::showActionMenu(LLMenuGL* menu, std::string spawning_v LLView* spawning_view = getChild<LLView> (spawning_view_name); S32 menu_x, menu_y; //show menu in co-ordinates of panel - spawning_view->localPointToOtherView(0, spawning_view->getRect().getHeight(), &menu_x, &menu_y, this); - menu_y += menu->getRect().getHeight(); + spawning_view->localPointToOtherView(0, 0, &menu_x, &menu_y, this); LLMenuGL::showPopup(this, menu, menu_x, menu_y); } } |