diff options
author | James Cook <james@lindenlab.com> | 2009-09-22 23:24:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-09-22 23:24:20 +0000 |
commit | 1b71689ad7509253aea12430504cde11658ac1c2 (patch) | |
tree | c718e599f4350406bb52d1536275fa09697caab7 /indra/newview/llchiclet.cpp | |
parent | 32d88d3879ddeb86eb2050af098394b482bfc762 (diff) |
EXT-331 Speak button uses the "Pressed" state and not the "Active/Selected/On" state. Speak button was hard-coded to segmented-button art -- removed hard-coding so it uses normal button params. Also changed walk-mode and camera-mode icons to use green backgrounds, which emphasizes the radio-button aspect of the controls. Reviewed with Erica.
Diffstat (limited to 'indra/newview/llchiclet.cpp')
-rw-r--r-- | indra/newview/llchiclet.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index 42ed783f94..a2dc97f7f5 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -1079,8 +1079,9 @@ LLTalkButton::Params::Params() speak_button.tab_stop(false); speak_button.is_toggle(true); speak_button.picture_style(true); - speak_button.image_selected(LLUI::getUIImage("SegmentedBtn_Left_Selected")); - speak_button.image_unselected(LLUI::getUIImage("SegmentedBtn_Left_Off")); + // Use default button art. JC + //speak_button.image_selected(LLUI::getUIImage("SegmentedBtn_Left_Selected")); + //speak_button.image_unselected(LLUI::getUIImage("SegmentedBtn_Left_Off")); show_button.name("right"); show_button.label(LLStringUtil::null); |