diff gtk/dw.c @ 1046:80cd7fed4995

Fix for an attempted change that causes issues with menubar packing on GTK depending on the box direction.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 27 May 2011 09:20:19 +0000
parents 2c2fcfeeffcc
children 818698b4a0df
line wrap: on
line diff
--- a/gtk/dw.c	Fri May 27 06:15:10 2011 +0000
+++ b/gtk/dw.c	Fri May 27 09:20:19 2011 +0000
@@ -10613,7 +10613,7 @@
          warn = TRUE;
       }
 
-      gtk_box_pack_start(GTK_BOX(vbox), item, TRUE, TRUE, 0);
+      gtk_box_pack_end(GTK_BOX(vbox), item, TRUE, TRUE, 0);
 
       gtk_widget_set_usize(item, width, height);
       gtk_object_set_user_data(GTK_OBJECT(box), vbox);