diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2018-12-04 18:51:44 +0200 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2018-12-04 18:51:44 +0200 |
commit | 320b7bacc2ef34b1434178cce8eb2818493fec21 (patch) | |
tree | 240316f80a322d67b3c22849d1e186f3994a139b /indra/llui/llcheckboxctrl.h | |
parent | a39d330cc22c603d5c06fabe86104e8948573e20 (diff) |
SL-10149 FIXED 'Mute when minimized' checkbox is displayed without focus on it after pressing on label in the "Preferences" floater
Diffstat (limited to 'indra/llui/llcheckboxctrl.h')
-rw-r--r-- | indra/llui/llcheckboxctrl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llcheckboxctrl.h b/indra/llui/llcheckboxctrl.h index 5ce45b2135..71bdc32e66 100644 --- a/indra/llui/llcheckboxctrl.h +++ b/indra/llui/llcheckboxctrl.h @@ -92,6 +92,8 @@ public: // LLCheckBoxCtrl interface virtual BOOL toggle() { return mButton->toggleState(); } // returns new state + void setBtnFocus() { mButton->setFocus(TRUE); } + void setEnabledColor( const LLColor4 &color ) { mTextEnabledColor = color; } void setDisabledColor( const LLColor4 &color ) { mTextDisabledColor = color; } |