Mercurial > pidgin
changeset 29088:886a0dfaa625
I screwed up the logic here and didn't realize it earlier.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Sun, 23 Aug 2009 14:59:42 +0000 |
parents | 2dcff225172e |
children | 4e968ede8838 |
files | pidgin/gtkutils.c |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkutils.c Sun Aug 23 05:04:15 2009 +0000 +++ b/pidgin/gtkutils.c Sun Aug 23 14:59:42 2009 +0000 @@ -2525,9 +2525,10 @@ void pidgin_set_urgent(GtkWindow *window, gboolean urgent) { - gtk_window_set_urgency_hint(window, urgent); #if defined _WIN32 winpidgin_window_flash(window, urgent); +#else + gtk_window_set_urgency_hint(window, urgent); #endif }