Thu, 06 Apr 2000 09:11:46 +0000
[gaim-migrate @ 97]
call gdk_window_show() instead of gdk_window_raise() on double clicks
in buddylist so that iconified converse windows will be brought to
the front as well.
| src/buddy.c | file | annotate | diff | comparison | revisions |
--- a/src/buddy.c Wed Apr 05 22:49:17 2000 +0000 +++ b/src/buddy.c Thu Apr 06 09:11:46 2000 +0000 @@ -352,7 +352,7 @@ c = find_conversation(b->name); if (c != NULL) { - gdk_window_raise(c->window->window); + gdk_window_show(c->window->window); } else { c = new_conversation(b->name); } @@ -378,7 +378,7 @@ c = find_conversation(b->name); if (c != NULL) { - gdk_window_raise(c->window->window); + gdk_window_show(c->window->window); } else { c = new_conversation(b->name); }