From 1195fd4309f38dd9f033b7193894985ba018c1c9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ji=C5=99=C3=AD=20Mat=C4=9Bj=C3=A1k?= Date: Thu, 5 Apr 2018 19:13:37 +0200 Subject: [PATCH] disable HTTP disk cache by default --- src/qml/SettingsView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/qml/SettingsView.qml b/src/qml/SettingsView.qml index f01a5a8..13b564d 100644 --- a/src/qml/SettingsView.qml +++ b/src/qml/SettingsView.qml @@ -45,7 +45,7 @@ Rectangle { property var appSettings: [ { "name": "Private Browsing", "active": false, "notify": function(v) { privateBrowsingEnabled = v; } }, - { "name": "Enable HTTP Disk Cache", "active": true, "notify": function(v) { httpDiskCacheEnabled = v; } }, + { "name": "Enable HTTP Disk Cache", "active": false, "notify": function(v) { httpDiskCacheEnabled = v; } }, { "name": "Auto Load Images", "active": true, "notify": function(v) { autoLoadImages = v; } }, { "name": "Disable JavaScript", "active": false, "notify": function(v) { javaScriptDisabled = v; } }, // { "name": "Enable Plugins", "active": false, "notify": function(v) { pluginsEnabled = v; } } -- 2.39.2