r15995 - gnucash/trunk/src/gnome-utils - Use gtk_widget_show, not gtk_widget_show_all. The latter screws up the

David Hampton hampton at cvs.gnucash.org
Sun Apr 22 22:06:20 EDT 2007


Author: hampton
Date: 2007-04-22 22:06:19 -0400 (Sun, 22 Apr 2007)
New Revision: 15995
Trac: http://svn.gnucash.org/trac/changeset/15995

Modified:
   gnucash/trunk/src/gnome-utils/gnc-main-window.c
Log:
Use gtk_widget_show, not gtk_widget_show_all. The latter screws up the
synchronization between the edit menu and which items are shown in the
window.


Modified: gnucash/trunk/src/gnome-utils/gnc-main-window.c
===================================================================
--- gnucash/trunk/src/gnome-utils/gnc-main-window.c	2007-04-23 01:56:42 UTC (rev 15994)
+++ gnucash/trunk/src/gnome-utils/gnc-main-window.c	2007-04-23 02:06:19 UTC (rev 15995)
@@ -3506,7 +3506,7 @@
     GList *window_iter;
     for (window_iter = active_windows; window_iter != NULL; window_iter = window_iter->next)
     {
-        gtk_widget_show_all(GTK_WIDGET(window_iter->data));
+        gtk_widget_show(GTK_WIDGET(window_iter->data));
     }
 }
 



More information about the gnucash-changes mailing list