Extend PermissionElement workaround to Qt 6.9.1+

Fixes #8612

(cherry picked from commit 2ec0f8fa77)
This commit is contained in:
Florian Bruhin 2025-06-16 14:08:38 +02:00
parent b4b7e1cbd9
commit e8c920e64b
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): if versions.webengine >= utils.VersionNumber(6, 7):
# WORKAROUND for https://bugreports.qt.io/browse/QTBUG-132681 # 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') 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 # 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') disabled_features.append('PermissionElement')
if not config.val.input.media_keys: if not config.val.input.media_keys: