From acbe9c08e949be95b5549d716232ff7a58785528 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Tue, 22 Oct 2024 20:16:42 +0300 Subject: fixes #4751 (Mute:Always blocks popups, sounds & blinking) --- plugins/TabSRMM/src/chat_tools.cpp | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) (limited to 'plugins/TabSRMM') diff --git a/plugins/TabSRMM/src/chat_tools.cpp b/plugins/TabSRMM/src/chat_tools.cpp index 166468ab11..f9686fa2da 100644 --- a/plugins/TabSRMM/src/chat_tools.cpp +++ b/plugins/TabSRMM/src/chat_tools.cpp @@ -265,18 +265,20 @@ BOOL DoSoundsFlashPopupTrayStuff(SESSION_INFO *si, GCEVENT *gce, BOOL bHighlight if (dat->m_pWnd) dat->m_pWnd->Invalidate(); } - - if (iMuteMode != CHATMODE_MUTE) { - auto sound = si->getSoundName(gce->iType); - if (dat) { - bInactive = dat->m_pContainer->m_hwnd != GetForegroundWindow(); - bActiveTab = (dat->m_pContainer->m_hwndActive == dat->GetHwnd()); - if (sound && dat->m_pContainer->MustPlaySound(dat)) - Skin_PlaySound(sound); - } - else if (sound) + + // if group chat is always muted, we don't play sounds & flash window + if (iMuteMode == CHATMODE_MUTE) + return; + + auto sound = si->getSoundName(gce->iType); + if (dat) { + bInactive = dat->m_pContainer->m_hwnd != GetForegroundWindow(); + bActiveTab = (dat->m_pContainer->m_hwndActive == dat->GetHwnd()); + if (sound && dat->m_pContainer->MustPlaySound(dat)) Skin_PlaySound(sound); } + else if (sound) + Skin_PlaySound(sound); // dialog event processing if (dat) { -- cgit v1.2.3