diff options
author | Loren Shih <seraph@lindenlab.com> | 2010-06-28 12:25:33 -0400 |
---|---|---|
committer | Loren Shih <seraph@lindenlab.com> | 2010-06-28 12:25:33 -0400 |
commit | 3ce3df564351ad7b6fb0acd4e0252b5f89f2a47e (patch) | |
tree | c2e00325ed05d3b96677ae28eabf69bd58207524 /indra/newview/llfolderview.cpp | |
parent | 913923850051409047d7df83cb005e3d270b5e3a (diff) |
EXT-8033 FIXED Selecting multiple inventory items can give incorrect right-click context menus
EXT-8093 FIXED No "open" or "properties" items for gestures
Re-added open/properties to gestures
Fixed right-click inventory selection so that it does something logical & consistent for multiple items. Had to add a "getLastVisible" to LLView to support this.
Diffstat (limited to 'indra/newview/llfolderview.cpp')
-rw-r--r-- | indra/newview/llfolderview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llfolderview.cpp b/indra/newview/llfolderview.cpp index f241d18a21..87c5a830e9 100644 --- a/indra/newview/llfolderview.cpp +++ b/indra/newview/llfolderview.cpp @@ -1868,7 +1868,8 @@ BOOL LLFolderView::handleRightMouseDown( S32 x, S32 y, MASK mask ) LLView::child_list_t::const_iterator menu_itor; for (menu_itor = list->begin(); menu_itor != list->end(); ++menu_itor) { - (*menu_itor)->setVisible(TRUE); + (*menu_itor)->setVisible(FALSE); + (*menu_itor)->pushVisible(TRUE); (*menu_itor)->setEnabled(TRUE); } |