diff options
author | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-01-09 13:30:14 -0800 |
---|---|---|
committer | Gilbert Gonzales <gilbert@lindenlab.com> | 2013-01-09 13:30:14 -0800 |
commit | 6a30c4c3c54f3d70d1a10fb76e7c81cd5e36a524 (patch) | |
tree | a47b81d20089c8756f3fccda4bd57fcb5ff4310b /indra/newview | |
parent | bb05a29374b2c9691937ccb15cdbff466fd775f1 (diff) |
CHUI-669: Upon DND mode exit, no longer flash IM messages that were stored during DND mode.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llimview.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/indra/newview/llimview.cpp b/indra/newview/llimview.cpp index 0326235d37..a3c338831c 100644 --- a/indra/newview/llimview.cpp +++ b/indra/newview/llimview.cpp @@ -129,11 +129,7 @@ void process_dnd_im(const LLSD& notification) false); //will need slight refactor to retrieve whether offline message or not (assume online for now) } - //For now always flash conversation line item - LLFloaterIMContainer* im_box = LLFloaterReg::getTypedInstance<LLFloaterIMContainer>("im_container"); - im_box->flashConversationItemWidget(sessionID, true); - - //And flash toolbar button + //Flash toolbar button for now, eventually the user's preference will be taken into account gToolBarView->flashCommand(LLCommandId("chat"), true); } |