# HG changeset patch # User Daniel Atallah # Date 1273790719 0 # Node ID 129f973c38b535cc52eb8a9b9beb73c1ca94441f # Parent cd857e9b728100aab811d62682f35383ef68862b 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 diff -r cd857e9b7281 -r 129f973c38b5 ChangeLog.win32 --- a/ChangeLog.win32 Thu May 13 22:05:59 2010 +0000 +++ b/ChangeLog.win32 Thu May 13 22:45:19 2010 +0000 @@ -1,4 +1,6 @@ version 2.7.1 (??/??/????): + * Fix a regression introduced in 2.7.0 that caused Window Flashing not + to work. version 2.7.0 (05/12/2010): * Updated GTK+ to 2.16.6 diff -r cd857e9b7281 -r 129f973c38b5 pidgin/win32/gtkwin32dep.c --- a/pidgin/win32/gtkwin32dep.c Thu May 13 22:05:59 2010 +0000 +++ b/pidgin/win32/gtkwin32dep.c Thu May 13 22:45:19 2010 +0000 @@ -327,6 +327,7 @@ info.dwFlags = FLASHW_ALL | FLASHW_TIMER; } else info.dwFlags = FLASHW_STOP; + FlashWindowEx(&info); info.dwTimeout = 0; }