Mercurial > pidgin
changeset 4280:57ab8f0a4263
[gaim-migrate @ 4531]
(17:39:44) Robot101: this patch to back out a change that made the OPT_BLIST_POPUP steal focus in an evil way
(17:39:45) Robot101: http://people.debian.org/~robot101/blist-avoid-focus-stealing3.diff
(17:39:56) Robot101: (entirely my fault)
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Fri, 10 Jan 2003 22:41:04 +0000 |
parents | 34e94878fdab |
children | d956ac6157cd |
files | src/buddy.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/buddy.c Fri Jan 10 22:37:19 2003 +0000 +++ b/src/buddy.c Fri Jan 10 22:41:04 2003 +0000 @@ -2374,7 +2374,7 @@ if (bs->sound != 2) play_sound(SND_BUDDY_ARRIVE); if (blist_options & OPT_BLIST_POPUP) - gtk_window_present(GTK_WINDOW(blist)); + gdk_window_show(blist->window); pm = gdk_pixmap_create_from_xpm_d(blist->window, &bm, NULL, (char **)login_icon_xpm); gtk_widget_hide(bs->pix); @@ -2435,7 +2435,7 @@ if (bs->sound != 1) play_sound(SND_BUDDY_LEAVE); if (blist_options & OPT_BLIST_POPUP) - gtk_window_present(GTK_WINDOW(blist)); + gdk_window_show(blist->window); bs->connlist = g_slist_remove(bs->connlist, gc); update_num_group(gs); if (bs->log_timer > 0)