The user interface preference page has only 9 rows in the GTK+ 2.x

version.

svn path=/trunk/; revision=8933
This commit is contained in:
Guy Harris 2003-11-11 05:23:23 +00:00
parent 6108feb655
commit c5fad03460
1 changed files with 5 additions and 1 deletions

View File

@ -1,7 +1,7 @@
/* gui_prefs.c
* Dialog box for GUI preferences
*
* $Id: gui_prefs.c,v 1.44 2003/11/11 05:09:03 guy Exp $
* $Id: gui_prefs.c,v 1.45 2003/11/11 05:23:23 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@ -158,7 +158,11 @@ static gboolean font_changed;
has been set to the name of the font the user selected. */
static gchar *new_font_name;
#if GTK_MAJOR_VERSION < 2
#define GUI_TABLE_ROWS 10
#else
#define GUI_TABLE_ROWS 9
#endif
GtkWidget*
gui_prefs_show(void)