changeset 4172:88ebcfcc3217

[gaim-migrate @ 4402] (15:09:14) Robot101: http://sourceforge.net/tracker/index.php?func=detail&aid=629387&group_id=235&atid=100235 <--- this has hints of a WM bug, but the code is silly. in buddy.c, switch two occurences of gdk_window_show(blist->window) for gtk_window_present(GTK_WINDOW(blist)) (15:13:20) LSchiere: what do you want doen for that last? (15:15:51) Robot101: commit that patch then close the bug. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Thu, 02 Jan 2003 20:18:25 +0000
parents 858822a27529
children b66f960bfe60
files src/buddy.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/buddy.c	Thu Jan 02 16:24:53 2003 +0000
+++ b/src/buddy.c	Thu Jan 02 20:18:25 2003 +0000
@@ -2381,7 +2381,7 @@
 			if (bs->sound != 2)
 				play_sound(SND_BUDDY_ARRIVE);
 			if (blist_options & OPT_BLIST_POPUP)
-				gdk_window_show(blist->window);
+				gtk_window_present(GTK_WINDOW(blist));
 			pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm,
 							  NULL, (char **)login_icon_xpm);
 			gtk_widget_hide(bs->pix);
@@ -2440,7 +2440,7 @@
 		if (bs->sound != 1)
 			play_sound(SND_BUDDY_LEAVE);
 		if (blist_options & OPT_BLIST_POPUP)
-			gdk_window_show(blist->window);
+			gtk_window_present(GTK_WINDOW(blist));
 		bs->connlist = g_slist_remove(bs->connlist, gc);
 		update_num_group(gs);
 		if (bs->log_timer > 0)