# HG changeset patch # User Stu Tomlinson # Date 1196874507 0 # Node ID 770c384b1803ab47b0c6a8bd8542cf03db321070 # Parent 3fdd39411e3e659125da709cbd13b09ff3e5a35f Don't hide all widgets when destroying a window because then the hidden gtkconv won't have any visible widgets. I tried doing show_all in various places when re-showing the conversation but this caused problems by showing formatting toolbars when they're not wanted and things. Fixes #4243 diff -r 3fdd39411e3e -r 770c384b1803 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Wed Dec 05 11:11:59 2007 +0000 +++ b/pidgin/gtkconv.c Wed Dec 05 17:08:27 2007 +0000 @@ -9030,8 +9030,6 @@ if (win->dialogs.search) gtk_widget_destroy(win->dialogs.search); - gtk_widget_hide_all(win->window); - if (win->gtkconvs) { while (win->gtkconvs) { gboolean last = (win->gtkconvs->next == NULL);