diff options
author | Rider Linden <rider@lindenlab.com> | 2024-10-14 12:49:43 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2024-10-14 14:51:56 -0700 |
commit | 2cd1f22f5b51708aaaf5d16a25847ef2c2832312 (patch) | |
tree | d40ccf40db721adf97780b33bab14b824c6cf4b4 /indra/llui | |
parent | 35b3842b08208b9f0a440498b21a8ff8688d8a48 (diff) |
Private Issue #297: Accept new flags in ScriptTeleportRequest message. Flags indicate if the world map should be opened and focused.
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llfloater.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/indra/llui/llfloater.h b/indra/llui/llfloater.h index 5bdbcdfcf8..9e1594bdd2 100644 --- a/indra/llui/llfloater.h +++ b/indra/llui/llfloater.h @@ -377,6 +377,10 @@ public: void enableResizeCtrls(bool enable, bool width = true, bool height = true); bool isPositioning(LLFloaterEnums::EOpenPositioning p) const { return (p == mPositioning); } + + void setAutoFocus(bool focus) { mAutoFocus = focus; } // whether to automatically take focus when opened + bool getAutoFocus() const { return mAutoFocus; } + protected: void applyControlsAndPosition(LLFloater* other); @@ -401,8 +405,6 @@ protected: void setExpandedRect(const LLRect& rect) { mExpandedRect = rect; } // size when not minimized const LLRect& getExpandedRect() const { return mExpandedRect; } - void setAutoFocus(bool focus) { mAutoFocus = focus; } // whether to automatically take focus when opened - bool getAutoFocus() const { return mAutoFocus; } LLDragHandle* getDragHandle() const { return mDragHandle; } void destroy(); // Don't call this directly. You probably want to call closeFloater() |