From 2ee95df9e7f1d16662a0da25fa0dcdfd971373c7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 3 Aug 2016 09:40:05 +0200 Subject: [PATCH] Change the default hint implemenation to Python This only affects drawing hints, JS is still used if possible to actually click them. It seems like for many people, the JS implementation was a lot slower than the Python one... --- qutebrowser/config/configdata.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index a99dcc8bf..4538ab5f1 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -932,7 +932,7 @@ def data(readonly=False): valid_values=typ.ValidValues( ('javascript', "Better but slower"), ('python', "Slightly worse but faster"), - )), 'javascript'), + )), 'python'), "Which implementation to use to find elements to hint."), readonly=readonly