Skip to content
Snippets Groups Projects
Commit a1528c45 authored by Mike Antipov's avatar Mike Antipov
Browse files

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
parent 8f81b5db
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment