From: Christian Dywan Date: Fri, 12 Jun 2009 21:17:34 +0000 (+0200) Subject: Enforce generated ident string if Custom was not chosen X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=52f45952cfe56d21c4aa0bc40b87ae8458aacc20;p=midori Enforce generated ident string if Custom was not chosen This solves the ident string not being updated when Midori is upgraded and running with existing configuration files. --- diff --git a/midori/midori-websettings.c b/midori/midori-websettings.c index a739c74a..d16e5562 100644 --- a/midori/midori-websettings.c +++ b/midori/midori-websettings.c @@ -1292,7 +1292,8 @@ midori_web_settings_set_property (GObject* object, } break; case PROP_IDENT_STRING: - katze_assign (web_settings->ident_string, g_value_dup_string (value)); + if (web_settings->identify_as == MIDORI_IDENT_CUSTOM) + katze_assign (web_settings->ident_string, g_value_dup_string (value)); break; case PROP_CACHE_SIZE: web_settings->cache_size = g_value_get_int (value);