diff options
| author | Richard Linden <none@none> | 2011-09-20 16:37:21 -0700 |
|---|---|---|
| committer | Richard Linden <none@none> | 2011-09-20 16:37:21 -0700 |
| commit | 64f30a302dfbcaf56502676fa4b8d8a06f355b40 (patch) | |
| tree | 33cc60eb960181fa35142c7dffcb26f4efef9e2e /indra/llui/llbutton.cpp | |
| parent | 3df9545017a4835e162801d3e8a13d68c8bc44ad (diff) | |
EXP-1228 FIX Create toolbar widget class that displays list of buttons horizontally or vertically
buttons are now centered and sized according to content
created floater_test_toolbar.xml to test
Diffstat (limited to 'indra/llui/llbutton.cpp')
| -rw-r--r-- | indra/llui/llbutton.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llbutton.cpp b/indra/llui/llbutton.cpp index 2459429f6e..6c08ec7431 100644 --- a/indra/llui/llbutton.cpp +++ b/indra/llui/llbutton.cpp @@ -314,7 +314,7 @@ boost::signals2::connection LLButton::setHeldDownCallback( const commit_signal_t } -// *TODO: Deprecate (for backwards compatability only) +// *TODO: Deprecate (for backwards compatibility only) boost::signals2::connection LLButton::setClickedCallback( button_callback_t cb, void* data ) { return setClickedCallback(boost::bind(cb, data)); @@ -919,7 +919,7 @@ void LLButton::setToggleState(BOOL b) void LLButton::setFlashing( BOOL b ) { - if (b != mFlashing) + if ((bool)b != mFlashing) { mFlashing = b; mFlashingTimer.reset(); |
