summaryrefslogtreecommitdiff
path: root/qutebrowser/config/qtargs.py
diff options
context:
space:
mode:
Diffstat (limited to 'qutebrowser/config/qtargs.py')
-rw-r--r--qutebrowser/config/qtargs.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/qutebrowser/config/qtargs.py b/qutebrowser/config/qtargs.py
index b263de541..f22a2a6be 100644
--- a/qutebrowser/config/qtargs.py
+++ b/qutebrowser/config/qtargs.py
@@ -132,6 +132,12 @@ def _qtwebengine_features(
# https://chromium-review.googlesource.com/c/chromium/src/+/2545444
enabled_features.append('ReducedReferrerGranularity')
+ if qtutils.version_check('5.15.2', compiled=False, exact=True):
+ # WORKAROUND for https://bugreports.qt.io/browse/QTBUG-89740
+ # FIXME Not needed anymore with QtWebEngne 5.15.3 (or Qt 6), but we'll probably
+ # have no way to detect that...
+ disabled_features.append('InstalledApp')
+
return (enabled_features, disabled_features)