Mercurial > pidgin.yaz
changeset 87:8923e3bd6c5a
[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 <tailor@pidgin.im>
author | Syd Logan <slogan> |
---|---|
date | Thu, 06 Apr 2000 09:11:46 +0000 |
parents | 83b0430e9db7 |
children | 78166fb457f1 |
files | src/buddy.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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); }