diff options
author | George Hazan <george.hazan@gmail.com> | 2014-01-21 13:17:19 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-01-21 13:17:19 +0000 |
commit | dc16fa8c5fa2e477b6ce896b8eb237462735baae (patch) | |
tree | 0decd239db25aa48a16ec6b4da49a1f678f3cedc /src/modules | |
parent | 6465dd41cc06b5952e77ccc72396627abf385a17 (diff) |
fix for window flashing in StdChat & Scriver
git-svn-id: http://svn.miranda-ng.org/main/trunk@7809 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/chat/tools.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/chat/tools.cpp b/src/modules/chat/tools.cpp index a553c4c916..5574f49e86 100644 --- a/src/modules/chat/tools.cpp +++ b/src/modules/chat/tools.cpp @@ -293,8 +293,8 @@ BOOL DoSoundsFlashPopupTrayStuff(SESSION_INFO *si, GCEVENT *gce, BOOL bHighlight ci.DoTrayIcon(si, gce);
if (bInactive || !g_Settings->bPopupInactiveOnly)
ci.DoPopup(si, gce);
- if (ci.OnFlashWindow)
- ci.OnFlashWindow(si, bInactive);
+ if (ci.OnFlashHighlight)
+ ci.OnFlashHighlight(si, bInactive);
return TRUE;
}
|