From daee57b37d3d41dfd5730d7bf63d77ca18da6168 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 25 Jun 2014 06:54:34 +0200 Subject: [PATCH] Saner default values for some QWebSettings --- qutebrowser/config/configdata.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index ec9052836..df5a6afba 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -328,7 +328,7 @@ DATA = OrderedDict([ "Whether to validate SSL handshakes."), ('dns-prefetch', - SettingValue(types.Bool(), 'false'), + SettingValue(types.Bool(), 'true'), "Specifies whether QtWebkit will try to pre-fetch DNS entries to " "speed up browsing."), )), @@ -474,17 +474,17 @@ DATA = OrderedDict([ "Quota for the offline web application cache."), ('offline-storage-database', - SettingValue(types.Bool(), 'false'), + SettingValue(types.Bool(), 'true'), "Specifies whether support for the HTML 5 offline storage feature is " "enabled or not."), ('offline-web-application-storage', - SettingValue(types.Bool(), 'false'), + SettingValue(types.Bool(), 'true'), "Specifies whether support for the HTML 5 web application cache " "feature is enabled or not."), ('local-storage', - SettingValue(types.Bool(), 'false'), + SettingValue(types.Bool(), 'true'), "Specifies whether support for the HTML 5 local storage feature is " "enabled or not."), )),