Skip to content

Commit

Permalink
Change the default hint implemenation to Python
Browse files Browse the repository at this point in the history
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...
  • Loading branch information
The-Compiler committed Aug 3, 2016
1 parent 7b7ff53 commit 2ee95df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qutebrowser/config/configdata.py
Expand Up @@ -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
Expand Down

0 comments on commit 2ee95df

Please sign in to comment.