aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/packet_win.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2013-01-22 18:27:18 +0000
committerGerald Combs <gerald@wireshark.org>2013-01-22 18:27:18 +0000
commit6ef1fc5002e8ed04019e81f236d4978010b0dfdb (patch)
tree1ababab774a91fa1cd79ee279c660714030f18f6 /ui/gtk/packet_win.c
parent394b6c1c00395d463897bee86c416bec8b173b7f (diff)
GTK+:
Get rid of user-hostile behavior. In the layout preferences pane 2 & 3 radio buttons overrode the user's selection if a duplicate item was selected. Now we assume that the user knows what he or she is doing and steal duplicate selections from the other panes. Qt: Match the new GTK+ behavior in the layout preferences. Add padding around the layout images. Add toolbar style preferences to the Appearance pane (instead of the layout pane). All: Remove the selection mode and scrollbar placement prefs and mark them obsolete as recently discussed on -dev. Adjust the layout images yet again after more Awful Monitor Testing. svn path=/trunk/; revision=47214
Diffstat (limited to 'ui/gtk/packet_win.c')
-rw-r--r--ui/gtk/packet_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/packet_win.c b/ui/gtk/packet_win.c
index 522a9e2023..014e612eab 100644
--- a/ui/gtk/packet_win.c
+++ b/ui/gtk/packet_win.c
@@ -928,7 +928,7 @@ void new_packet_window(GtkWidget *w _U_, gboolean editable _U_)
gtk_widget_show(pane);
/* Tree view */
- tv_scrollw = proto_tree_view_new(&prefs, &tree_view);
+ tv_scrollw = proto_tree_view_new(&tree_view);
gtk_paned_pack1(GTK_PANED(pane), tv_scrollw, TRUE, TRUE);
gtk_widget_set_size_request(tv_scrollw, -1, TV_SIZE);
gtk_widget_show(tv_scrollw);