comparison 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
comparison
equal deleted inserted replaced
1045:625fa470dcf0 1046:80cd7fed4995
9383 { 9383 {
9384 /* Only show warning if item is not a box */ 9384 /* Only show warning if item is not a box */
9385 warn = TRUE; 9385 warn = TRUE;
9386 } 9386 }
9387 9387
9388 gtk_box_pack_start(GTK_BOX(vbox), item, TRUE, TRUE, 0); 9388 gtk_box_pack_end(GTK_BOX(vbox), item, TRUE, TRUE, 0);
9389 9389
9390 gtk_widget_set_size_request(item, width, height); 9390 gtk_widget_set_size_request(item, width, height);
9391 g_object_set_data(G_OBJECT(box), "_dw_user", vbox); 9391 g_object_set_data(G_OBJECT(box), "_dw_user", vbox);
9392 } 9392 }
9393 DW_MUTEX_UNLOCK; 9393 DW_MUTEX_UNLOCK;