aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2004-03-11 00:22:41 +0000
committerGerald Combs <gerald@wireshark.org>2004-03-11 00:22:41 +0000
commit7df599234448236b1a42d6c80ef3429bd7926b3b (patch)
tree031b2131644b44b63b96e36658f23e223f076e11 /gtk
parent561505c7412655339a5c26614a43d88720ddedab (diff)
Make the color preferences popup menu shrink to its natural size instead
of filling in its entire table cell. svn path=/trunk/; revision=10359
Diffstat (limited to 'gtk')
-rw-r--r--gtk/stream_prefs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/stream_prefs.c b/gtk/stream_prefs.c
index cb73ea55d4..d3f3874087 100644
--- a/gtk/stream_prefs.c
+++ b/gtk/stream_prefs.c
@@ -1,7 +1,7 @@
/* stream_prefs.c
* Dialog boxes for preferences for the stream window
*
- * $Id: stream_prefs.c,v 1.19 2004/01/16 11:53:40 ulfl Exp $
+ * $Id: stream_prefs.c,v 1.20 2004/03/11 00:22:41 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -123,7 +123,7 @@ stream_prefs_show()
gtk_menu_append (GTK_MENU (menu), menuitem);
}
gtk_option_menu_set_menu (GTK_OPTION_MENU (optmenu), menu);
- gtk_table_attach_defaults(GTK_TABLE(main_tb), optmenu, 1, 2, 0, 1);
+ gtk_table_attach(GTK_TABLE(main_tb), optmenu, 1, 2, 0, 1, GTK_SHRINK, GTK_SHRINK, 0, 0);
gtk_widget_show(optmenu);
#if GTK_MAJOR_VERSION < 2