diff gtk3/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 c008a186b735
line wrap: on
line diff
--- a/gtk3/dw.c	Fri May 27 06:15:10 2011 +0000
+++ b/gtk3/dw.c	Fri May 27 09:20:19 2011 +0000
@@ -9385,7 +9385,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_size_request(item, width, height);
       g_object_set_data(G_OBJECT(box), "_dw_user", vbox);