GTK3 "expand" handling changes.

As suggested by Peter Hatini in the patch attached to Bug #8315.

https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=8315


svn path=/trunk/; revision=48244
This commit is contained in:
Bill Meier 2013-03-11 17:15:54 +00:00
parent 5662419a06
commit 978d314630
3 changed files with 3 additions and 3 deletions

View File

@ -205,7 +205,7 @@ dhcpstat_init(const char *opt_arg, void *userdata _U_)
/* Status Codes frame */
message_type_fr = gtk_frame_new("DHCP Message Type");
gtk_box_pack_start(GTK_BOX(vbox), message_type_fr, TRUE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(vbox), message_type_fr, FALSE, FALSE, 0);
gtk_widget_show(message_type_fr);
sp->grid_message_type = ws_gtk_grid_new();

View File

@ -332,7 +332,7 @@ time_shift_cb(GtkWidget *w _U_, gpointer d _U_)
*/
bbox = dlg_button_row_new(GTK_STOCK_APPLY, GTK_STOCK_CLOSE, GTK_STOCK_HELP,
NULL);
gtk_box_pack_start(GTK_BOX(main_vb), bbox, FALSE, FALSE, 0);
gtk_box_pack_start(GTK_BOX(main_vb), bbox, TRUE, TRUE, 0);
apply_bt = g_object_get_data(G_OBJECT(bbox), GTK_STOCK_APPLY);
g_signal_connect(apply_bt, "clicked", G_CALLBACK(time_shift_apply_cb),

View File

@ -356,7 +356,7 @@ gtk_wspstat_init(const char *opt_arg, void *userdata _U_)
/* Status Codes frame */
statuscode_fr = gtk_frame_new("Summary of Status Code (wsp.reply.status)");
gtk_box_pack_start(GTK_BOX(main_vb), statuscode_fr, TRUE, TRUE, 0);
gtk_box_pack_start(GTK_BOX(main_vb), statuscode_fr, FALSE, FALSE, 0);
sp->grid_status_code = ws_gtk_grid_new();
gtk_container_add(GTK_CONTAINER(statuscode_fr), sp->grid_status_code);