diff options
| author | Andrew Polunin <apolunin@productengine.com> | 2009-12-19 20:00:46 +0200 | 
|---|---|---|
| committer | Andrew Polunin <apolunin@productengine.com> | 2009-12-19 20:00:46 +0200 | 
| commit | 05898105c88a2fa175bdc3d353461a6f61ad0616 (patch) | |
| tree | c1c7b0a45ad8930a4dcf9710b60eed74088b3089 | |
| parent | 24b1f278247315efcc317394c200651ea7ab11d2 (diff) | |
fixed major bug EXT-3586 IM well button shows \"9+\" if number of unread IMs is more than 9
--HG--
branch : product-engine
| -rw-r--r-- | indra/newview/llchiclet.cpp | 2 | ||||
| -rw-r--r-- | indra/newview/skins/default/xui/en/panel_bottomtray.xml | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp index 21a0381495..bb09f34362 100644 --- a/indra/newview/llchiclet.cpp +++ b/indra/newview/llchiclet.cpp @@ -140,7 +140,7 @@ private:  LLSysWellChiclet::Params::Params()  : button("button")  , unread_notifications("unread_notifications") -, max_displayed_count("max_displayed_count", 9) +, max_displayed_count("max_displayed_count", 99)  , flash_to_lit_count("flash_to_lit_count", 3)  , flash_period("flash_period", 0.5F)  { diff --git a/indra/newview/skins/default/xui/en/panel_bottomtray.xml b/indra/newview/skins/default/xui/en/panel_bottomtray.xml index 3e2910458f..5ae808581d 100644 --- a/indra/newview/skins/default/xui/en/panel_bottomtray.xml +++ b/indra/newview/skins/default/xui/en/panel_bottomtray.xml @@ -327,6 +327,7 @@ as for parent layout_panel (chiclet_list_panel) to resize bottom tray properly.           min_width="35"           user_resize="false">              <chiclet_im_well +             max_displayed_count="99"               flash_period="0.3"               follows="right"               height="23" @@ -356,7 +357,6 @@ image_pressed_selected  "Lit" + "Selected" - there are new messages and the Well                   image_selected="PushButton_Selected_Press"                   label_color="Black"                   left="0" -                 max_displayed_count="99"                   name="Unread IM messages"                   pad_left="0"                   pad_right="0" | 
