diff options
Diffstat (limited to 'indra/llui/llbutton.h')
-rw-r--r-- | indra/llui/llbutton.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llui/llbutton.h b/indra/llui/llbutton.h index 04716d605b..73ba457d34 100644 --- a/indra/llui/llbutton.h +++ b/indra/llui/llbutton.h @@ -233,6 +233,8 @@ public: static void toggleFloaterAndSetToggleState(LLUICtrl* ctrl, const LLSD& sdname); static void setFloaterToggle(LLUICtrl* ctrl, const LLSD& sdname); static void showHelp(LLUICtrl* ctrl, const LLSD& sdname); + + void setForcePressedState(BOOL b) { mForcePressedState = b; } protected: const LLPointer<LLUIImage>& getImageUnselected() const { return mImageUnselected; } @@ -310,6 +312,7 @@ private: BOOL mNeedsHighlight; BOOL mCommitOnReturn; BOOL mFadeWhenDisabled; + BOOL mForcePressedState; LLFrameTimer mFlashingTimer; }; |