aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/tcp_graph.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-09 11:37:57 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2010-10-09 11:37:57 +0000
commitc3898e306d8c6058f2254b13a1d2af7560e8e1ec (patch)
treef4e50fb96896268ec1badbef8a8078ee3071d8b5 /gtk/tcp_graph.c
parent406f97844e70e2450aaacf7f53fcaf1760cf1989 (diff)
From Alexander Koeppe via bug 5287:
Correct order of Window Scaling Graph in Graph control box. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@34443 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/tcp_graph.c')
-rw-r--r--gtk/tcp_graph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/tcp_graph.c b/gtk/tcp_graph.c
index e1231b90e5..b76c8298f4 100644
--- a/gtk/tcp_graph.c
+++ b/gtk/tcp_graph.c
@@ -1504,11 +1504,11 @@ static GtkWidget *control_panel_create_graph_type_group (struct graph *g)
graph_init = gtk_check_button_new_with_label ("Init on change");
graph_sep = gtk_hseparator_new ();
graph_box = gtk_vbox_new (FALSE, 0);
- gtk_box_pack_start (GTK_BOX (graph_box), graph_wscale, TRUE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (graph_box), graph_rtt, TRUE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (graph_box), graph_tput, TRUE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (graph_box), graph_tseqstevens, TRUE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (graph_box), graph_tseqttrace, TRUE, TRUE, 0);
+ gtk_box_pack_start (GTK_BOX (graph_box), graph_wscale, TRUE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (graph_box), graph_sep, TRUE, TRUE, 0);
gtk_box_pack_start (GTK_BOX (graph_box), graph_init, TRUE, TRUE, 0);
graph_frame = gtk_frame_new ("Graph type:");