If you "save" your preferences without opening the color

selection dialog, the colors are saved with null values.
So do not call fetch_colors if the colors_changed boolean
is FALSE ...

svn path=/trunk/; revision=2350
This commit is contained in:
Laurent Deniel 2000-08-23 18:52:38 +00:00
parent fb3643b8d5
commit 30c432f734
1 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
/* gui_prefs.c
* Dialog box for GUI preferences
*
* $Id: gui_prefs.c,v 1.14 2000/08/23 16:15:13 deniel Exp $
* $Id: gui_prefs.c,v 1.15 2000/08/23 18:52:38 deniel Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -361,7 +361,8 @@ gui_prefs_fetch(GtkWidget *w)
gtk_object_get_data(GTK_OBJECT(w), PTREE_EXPANDER_STYLE_KEY),
expander_style_vals);
fetch_colors();
if (colors_changed)
fetch_colors();
}
void