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/llui/llview.h | |
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/llui/llview.h')
-rw-r--r-- | indra/llui/llview.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llui/llview.h b/indra/llui/llview.h index 9ff6a4e1a0..aba6c310f1 100644 --- a/indra/llui/llview.h +++ b/indra/llui/llview.h @@ -310,7 +310,8 @@ public: void pushVisible(BOOL visible) { mLastVisible = mVisible; setVisible(visible); } void popVisible() { setVisible(mLastVisible); } - + BOOL getLastVisible() const { return mLastVisible; } + LLHandle<LLView> getHandle() { mHandle.bind(this); return mHandle; } U32 getFollows() const { return mReshapeFlags; } |