From 598fec7ce9e168c8924630aa0522a9fd9ae599c9 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 6 Aug 2014 07:11:33 +0200 Subject: [PATCH] configdata: Remove duplicate keys in default config. --- qutebrowser/config/configdata.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index e6fc545ab..c5d7ff57f 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -490,19 +490,11 @@ DATA = OrderedDict([ 'Qt plugins with a mimetype such as "application/x-qt-plugin" are ' "not affected by this setting."), - ('allow-javascript', - SettingValue(types.Bool(), 'true'), - "Enables or disables the running of JavaScript programs."), - #('allow-java', # SettingValue(types.Bool(), 'true'), # "Enables or disables Java applets. Currently Java applets are " # "not supported"), - ('allow-plugins', - SettingValue(types.Bool(), 'false'), - "Enables or disables plugins in Web pages."), - ('javascript-can-open-windows', SettingValue(types.Bool(), 'false'), "Whether JavaScript programs can open new windows."),