diff options
author | George Hazan <ghazan@miranda.im> | 2018-06-06 21:29:36 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-06-06 21:29:36 +0300 |
commit | 32b5ae141b4b63d2a1441cb8cad1b15b7b78f5b7 (patch) | |
tree | 619f819e7932461f29b927157ae9cb6fcab9f788 /src/core | |
parent | f7d7c40c372287642424883fc64b95edeb4461c9 (diff) |
fixes #1409 (tab icon disappears after blinking)
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/stdmsg/src/msgdialog.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/stdmsg/src/msgdialog.cpp b/src/core/stdmsg/src/msgdialog.cpp index 356e4e2d57..5ad478afe8 100644 --- a/src/core/stdmsg/src/msgdialog.cpp +++ b/src/core/stdmsg/src/msgdialog.cpp @@ -1193,8 +1193,10 @@ INT_PTR CSrmmWindow::DlgProc(UINT uMsg, WPARAM wParam, LPARAM lParam) case WM_TIMER:
if (wParam == TIMERID_FLASHWND) {
- if (m_nFlash > 2 * g_dat.nFlashMax)
+ if (m_nFlash > 2 * g_dat.nFlashMax) {
StopFlash();
+ return 0;
+ }
}
else if (wParam == TIMERID_TYPE) {
ShowTime(false);
|