# HG changeset patch # User Syd Logan # Date 955012306 0 # Node ID 8923e3bd6c5a69910edec2eee4432e83e4ca193d # Parent 83b0430e9db74ed38d82cd91ed0820cca32164a0 [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. committer: Tailor Script diff -r 83b0430e9db7 -r 8923e3bd6c5a src/buddy.c --- 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); }