Add input.spatial_navigation to needs_reload

See #3648
This commit is contained in:
Florian Bruhin 2018-03-06 11:33:36 +01:00
parent 3701eb121f
commit b6efe65891

View File

@ -938,8 +938,12 @@ class WebEngineTab(browsertab.AbstractTab):
if not navigation.accepted or not navigation.is_main_frame:
return
needs_reload = {'content.plugins', 'content.javascript.enabled',
'content.javascript.can_access_clipboard'}
needs_reload = {
'content.plugins',
'content.javascript.enabled',
'content.javascript.can_access_clipboard',
'input.spatial_navigation',
}
assert needs_reload.issubset(configdata.DATA)
changed = self.settings.update_for_url(navigation.url)