summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMike Antipov <mantipov@productengine.com>2009-12-24 15:06:48 +0200
committerMike Antipov <mantipov@productengine.com>2009-12-24 15:06:48 +0200
commita1528c45594e5fc57eb956c853126f9d9f3fc387 (patch)
tree75ccba5a2a2d1ff874ff32fe2828577fe0877f5f /indra/newview
parent8f81b5dbe4ff0a0d6486e5325250650986f6a81e (diff)
Fixed normal bug EXT-3678 ( IM well button becomes "unlit" after starting voice session)
-- do nothing in Wells in case the same count of unread messages comes. --HG-- branch : product-engine
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llchiclet.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/newview/llchiclet.cpp b/indra/newview/llchiclet.cpp
index e6f56d89f7..154a711431 100644
--- a/indra/newview/llchiclet.cpp
+++ b/indra/newview/llchiclet.cpp
@@ -173,6 +173,9 @@ LLSysWellChiclet::~LLSysWellChiclet()
void LLSysWellChiclet::setCounter(S32 counter)
{
+ // do nothing if the same counter is coming. EXT-3678.
+ if (counter == mCounter) return;
+
// note same code in LLChicletNotificationCounterCtrl::setCounter(S32 counter)
std::string s_count;
if(counter != 0)