diff options
author | George Hazan <ghazan@miranda.im> | 2023-01-26 22:27:24 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-01-26 22:27:24 +0300 |
commit | c736d08681747a9453bd4c266f6dd54d8cbd79eb (patch) | |
tree | a50a243e9036b62088d1cc9e1222db1e9a16f4ee /plugins | |
parent | 944ab8ba6a2205a684559695bce7982840f46c11 (diff) |
fixes #3303 (WhatsApp: мигание чата)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/TabSRMM/src/msgdlgother.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/TabSRMM/src/msgdlgother.cpp b/plugins/TabSRMM/src/msgdlgother.cpp index b7a01a7e4a..94f019b140 100644 --- a/plugins/TabSRMM/src/msgdlgother.cpp +++ b/plugins/TabSRMM/src/msgdlgother.cpp @@ -548,7 +548,7 @@ void CMsgDialog::FlashOnClist(MEVENT hEvent, DBEVENTINFO *dbei) if (hEvent == 0)
return;
- if (!g_plugin.bFlashOnClist)
+ if (!g_plugin.bFlashOnClist || isChat())
return;
if ((GetForegroundWindow() != m_pContainer->m_hwnd || m_pContainer->m_hwndActive != m_hwnd) && !(dbei->flags & DBEF_SENT) && dbei->eventType == EVENTTYPE_MESSAGE && !m_bFlashClist) {
|