Make the button box the last row in gtk3 too.

svn path=/trunk/; revision=45967
This commit is contained in:
Anders Broman 2012-11-08 12:30:17 +00:00
parent dab12cd8d5
commit 07bdd97da6
1 changed files with 1 additions and 1 deletions

View File

@ -2408,7 +2408,7 @@ init_io_stat_window(io_stat_t *io)
create_draw_area(io, vbox);
hbox=ws_gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 3, FALSE);
gtk_box_pack_end(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
gtk_box_pack_start(GTK_BOX(vbox), hbox, FALSE, FALSE, 5);
gtk_container_set_border_width(GTK_CONTAINER(hbox), 3);
gtk_box_set_child_packing(GTK_BOX(vbox), hbox, FALSE, FALSE, 0, GTK_PACK_START);
gtk_widget_show(hbox);