]> rtime.felk.cvut.cz Git - coffee/qtwebbrowser.git/commitdiff
disable HTTP disk cache by default
authorJiří Matěják <jiri.matejak@fel.cvut.cz>
Thu, 5 Apr 2018 17:13:37 +0000 (19:13 +0200)
committerJiří Matěják <jiri.matejak@fel.cvut.cz>
Thu, 5 Apr 2018 17:13:37 +0000 (19:13 +0200)
src/qml/SettingsView.qml

index f01a5a8a6f1510acf7cbb71574e8a8796281a14d..13b564d87f28ee728b63849d522f472ec654e7cb 100644 (file)
@@ -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; } }