From 1f1570f0e69d1536ef0adab0c41576078606ac68 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Wed, 6 Jul 2022 13:27:38 +0200 Subject: [PATCH] QmlDesigner: Fix hover issue in UrlChooser Fix UrlChooser ItemDelegates not getting the hover event due to a MouseArea overlayed on top which also accepts hover events. This issue wasn't there in Qt 6.2.4 and only happend since Qt 6.3.1 Change-Id: Ifc43fe70fbefab9696a17a59966afdaf47b93829 Reviewed-by: Thomas Hartmann --- .../imports/StudioControls/FilterComboBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/FilterComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/FilterComboBox.qml index 1c2fa82c14d..da0850fb14a 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/FilterComboBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/FilterComboBox.qml @@ -744,7 +744,7 @@ Item { anchors.fill: parent enabled: popup.visible && popupMouseArea.active - hoverEnabled: true + hoverEnabled: popupMouseArea.enabled onPositionChanged: { popupMouseArea.active = false } } }