Disable Wayland check on Qt >= 5.11.2

Fixes #2932
This commit is contained in:
Florian Bruhin 2018-12-15 15:43:44 +01:00
parent 206a2f199b
commit ba940f7f87
2 changed files with 5 additions and 0 deletions

View File

@ -51,6 +51,8 @@ Changed
adblocker can be disabled on a given page.
- Elements with a `tabindex` attribute now also get hints by default.
- Various small performance improvements for hints and the completion.
- The Wayland check for QtWebEngine is now disabled on Qt >= 5.11.2, as those
versions should work without any issues.
Fixed
~~~~~

View File

@ -238,6 +238,9 @@ def _handle_wayland():
if has_qt511 and config.val.qt.force_software_rendering == 'chromium':
return
if qtutils.version_check('5.11.2', compiled=False):
return
buttons = []
text = "<p>You can work around this in one of the following ways:</p>"