diff options
author | PavelK ProductEngine <pkrivich@productengine.com> | 2013-06-06 19:49:42 +0300 |
---|---|---|
committer | PavelK ProductEngine <pkrivich@productengine.com> | 2013-06-06 19:49:42 +0300 |
commit | ab37c8b8f5d830af7155bf63c084dad76070cb42 (patch) | |
tree | 7e3afc118eab0ef63ed86770e1c361b69fb18707 /indra/newview/llimview.cpp | |
parent | bad8c183fe1e0f29685e7d648551effebfb096d9 (diff) |
CHUI-896 ADD FIX Line flashing and FUI button flashing not working correctly for CHUI notifications
Fixed line flashing when conversations floater is open but does not have focus
Diffstat (limited to 'indra/newview/llimview.cpp')
-rwxr-xr-x | indra/newview/llimview.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index ba96c5ee24..8d055be263 100755 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -311,9 +311,10 @@ void notify_of_message(const LLSD& msg, bool is_dnd_msg) } else { - if (is_dnd_msg && (ON_TOP == conversations_floater_status || + if ((is_dnd_msg && (ON_TOP == conversations_floater_status || NOT_ON_TOP == conversations_floater_status || CLOSED == conversations_floater_status)) + || CLOSED == conversations_floater_status) { im_box->highlightConversationItemWidget(session_id, true); } |