summaryrefslogtreecommitdiff
path: root/pidgin/win32
diff options
context:
space:
mode:
authorDaniel Atallah <datallah@pidgin.im>2010-05-13 22:45:19 +0000
committerDaniel Atallah <datallah@pidgin.im>2010-05-13 22:45:19 +0000
commitb2e5903097293c7055873db3262ec1c57ef5f252 (patch)
tree98cb0b16ca0500d73dcdb531b285f2ab7bd815d3 /pidgin/win32
parent7b2ee4cc2d27dd388b8a2ce314a5e8064abc78bb (diff)
downloadpidgin-b2e5903097293c7055873db3262ec1c57ef5f252.tar.gz
Fix a regression in 2.7.0 that caused window flashing not to work on Windows.
The sad part is that this change has been sitting in my tree for a couple months. :( Fixes #11842
Diffstat (limited to 'pidgin/win32')
-rw-r--r--pidgin/win32/gtkwin32dep.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/pidgin/win32/gtkwin32dep.c b/pidgin/win32/gtkwin32dep.c
index 1da98d5cdb..5e5b7fc2ca 100644
--- a/pidgin/win32/gtkwin32dep.c
+++ b/pidgin/win32/gtkwin32dep.c
@@ -327,6 +327,7 @@ winpidgin_window_flash(GtkWindow *window, gboolean flash) {
info.dwFlags = FLASHW_ALL | FLASHW_TIMER;
} else
info.dwFlags = FLASHW_STOP;
+ FlashWindowEx(&info);
info.dwTimeout = 0;
}