Extend PermissionElement workaround to Qt 6.9.1+

Fixes #8612
This commit is contained in:
Florian Bruhin 2025-06-16 14:08:38 +02:00
parent 9d5aeefa8c
commit 2ec0f8fa77
1 changed files with 3 additions and 3 deletions

View File

@ -156,12 +156,12 @@ def _qtwebengine_features( # noqa: C901
if versions.webengine >= utils.VersionNumber(6, 7):
# WORKAROUND for https://bugreports.qt.io/browse/QTBUG-132681
# TODO adjust if fixed in Qt 6.8.2/.3 or 6.9.0/.1
# TODO adjust if fixed in Qt 6.9.2+
disabled_features.append('DocumentPictureInPictureAPI')
if versions.webengine == utils.VersionNumber(6, 9):
if versions.webengine >= utils.VersionNumber(6, 9):
# WORKAROUND for https://bugreports.qt.io/browse/QTBUG-135787
# TODO adjust if still present in 6.9.1
# TODO adjust if fixed in Qt 6.9.2+
disabled_features.append('PermissionElement')
if not config.val.input.media_keys: