From: Christian Dywan Date: Mon, 1 Feb 2010 22:42:35 +0000 (+0100) Subject: Unconditionally propagae modified user-agent property value X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c056a21d1ab66f7647e9d2a3b38f03c3568caea6;p=midori Unconditionally propagae modified user-agent property value --- diff --git a/midori/midori-websettings.c b/midori/midori-websettings.c index c53802e6..0a757520 100644 --- a/midori/midori-websettings.c +++ b/midori/midori-websettings.c @@ -1518,12 +1518,11 @@ midori_web_settings_set_property (GObject* object, break; case PROP_USER_AGENT: if (web_settings->identify_as == MIDORI_IDENT_CUSTOM) - { katze_assign (web_settings->ident_string, g_value_dup_string (value)); - #if WEBKIT_CHECK_VERSION (1, 1, 11) - g_object_set (web_settings, "WebKitWebSettings::user-agent", web_settings->ident_string, NULL); - #endif - } + #if WEBKIT_CHECK_VERSION (1, 1, 11) + g_object_set (web_settings, "WebKitWebSettings::user-agent", + web_settings->ident_string, NULL); + #endif break; case PROP_PREFERRED_LANGUAGES: katze_assign (web_settings->http_accept_language, g_value_dup_string (value));