diff options
author | George Hazan <george.hazan@gmail.com> | 2024-10-27 20:06:20 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-10-27 20:06:20 +0300 |
commit | 692e44fc2e2f5f419d701dc65279557a973a2b40 (patch) | |
tree | 5411a4d570f0c7a6dfc1cea20be25a30f2f157a9 /plugins/TabSRMM/src | |
parent | 41372b6061bbd20c702c54d65a9f1719a4906249 (diff) |
more fixes for #4751
Diffstat (limited to 'plugins/TabSRMM/src')
-rw-r--r-- | plugins/TabSRMM/src/chat_tools.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/chat_tools.cpp b/plugins/TabSRMM/src/chat_tools.cpp index c985382e57..2a818f4c47 100644 --- a/plugins/TabSRMM/src/chat_tools.cpp +++ b/plugins/TabSRMM/src/chat_tools.cpp @@ -233,7 +233,8 @@ BOOL DoSoundsFlashPopupTrayStuff(SESSION_INFO *si, GCEVENT *gce, BOOL bHighlight else {
// do blinking icons in tray
if (bInactive || !g_Settings.bTrayIconInactiveOnly) {
- g_chatApi.DoTrayIcon(si, gce);
+ if (iMuteMode != CHATMODE_MUTE)
+ g_chatApi.DoTrayIcon(si, gce);
if (iEvent == GC_EVENT_MESSAGE)
bFlagUnread = true;
}
|