diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/ephy-dialog.c | 5 |
2 files changed, 7 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2003-12-02 Christian Persch <chpe@cvs.gnome.org> + + * lib/ephy-dialog.c: (set_info_from_pref): + + Set sensitivity from gconf key writability, and do it right. + 2003-12-02 David Bordoley <bordoley@msu.edu> * help/C/epiphany.xml: diff --git a/lib/ephy-dialog.c b/lib/ephy-dialog.c index db5103702..0c5aa4024 100644 --- a/lib/ephy-dialog.c +++ b/lib/ephy-dialog.c @@ -829,10 +829,7 @@ set_info_from_pref (PropertyInfo *info) set_info_from_value (info, &value); g_value_unset (&value); - if (eel_gconf_key_is_writable (info->pref) == FALSE) - { - set_sensitivity (info, FALSE); - } + set_sensitivity (info, eel_gconf_key_is_writable (info->pref)); } } |