comparison src/buddy.c @ 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 ebfb80bbe1ed
children a614423c648f
comparison
equal deleted inserted replaced
4171:858822a27529 4172:88ebcfcc3217
2379 } 2379 }
2380 if (b->present == 1) { 2380 if (b->present == 1) {
2381 if (bs->sound != 2) 2381 if (bs->sound != 2)
2382 play_sound(SND_BUDDY_ARRIVE); 2382 play_sound(SND_BUDDY_ARRIVE);
2383 if (blist_options & OPT_BLIST_POPUP) 2383 if (blist_options & OPT_BLIST_POPUP)
2384 gdk_window_show(blist->window); 2384 gtk_window_present(GTK_WINDOW(blist));
2385 pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm, 2385 pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm,
2386 NULL, (char **)login_icon_xpm); 2386 NULL, (char **)login_icon_xpm);
2387 gtk_widget_hide(bs->pix); 2387 gtk_widget_hide(bs->pix);
2388 gtk_pixmap_set(GTK_PIXMAP(bs->pix), pm, bm); 2388 gtk_pixmap_set(GTK_PIXMAP(bs->pix), pm, bm);
2389 gtk_widget_show(bs->pix); 2389 gtk_widget_show(bs->pix);
2438 buddies that have already signed 2438 buddies that have already signed
2439 off */ 2439 off */
2440 if (bs->sound != 1) 2440 if (bs->sound != 1)
2441 play_sound(SND_BUDDY_LEAVE); 2441 play_sound(SND_BUDDY_LEAVE);
2442 if (blist_options & OPT_BLIST_POPUP) 2442 if (blist_options & OPT_BLIST_POPUP)
2443 gdk_window_show(blist->window); 2443 gtk_window_present(GTK_WINDOW(blist));
2444 bs->connlist = g_slist_remove(bs->connlist, gc); 2444 bs->connlist = g_slist_remove(bs->connlist, gc);
2445 update_num_group(gs); 2445 update_num_group(gs);
2446 if (bs->log_timer > 0) 2446 if (bs->log_timer > 0)
2447 g_source_remove(bs->log_timer); 2447 g_source_remove(bs->log_timer);
2448 bs->log_timer = g_timeout_add(10000, log_timeout, bs); 2448 bs->log_timer = g_timeout_add(10000, log_timeout, bs);