forked from qt-creator/qt-creator
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 <thomas.hartmann@qt.io>
This commit is contained in:
committed by
Henning Gründl
parent
b694b1bd6e
commit
1f1570f0e6
@@ -744,7 +744,7 @@ Item {
|
||||
|
||||
anchors.fill: parent
|
||||
enabled: popup.visible && popupMouseArea.active
|
||||
hoverEnabled: true
|
||||
hoverEnabled: popupMouseArea.enabled
|
||||
onPositionChanged: { popupMouseArea.active = false }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user