# HG changeset patch # User Luke Schierer # Date 1041538705 0 # Node ID 88ebcfcc3217fe220d024e38e22b6b269807a74c # Parent 858822a275294e07571bae001641c65c5b9d8253 [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 diff -r 858822a27529 -r 88ebcfcc3217 src/buddy.c --- 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)