From a7a4cbfe25e0099fbeab4bf70c1b5af6f76ecccc Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Fri, 27 Jan 2023 14:50:54 +0100 Subject: [PATCH] QmlDesigner: Fix TopLevelComboBox hover Change-Id: I3531e010d9a13b11d2b93d1aa8f019307919268d Reviewed-by: Thomas Hartmann --- .../imports/StudioControls/TopLevelComboBox.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml index 66e3041e451..aab210ca563 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml @@ -10,7 +10,8 @@ T.ComboBox { property StudioTheme.ControlStyle style: StudioTheme.Values.controlStyle - property bool hover: (comboBoxInput.hover || window.visible) && control.enabled + property bool hover: (comboBoxInput.hover || window.visible || popupIndicator.hover) + && control.enabled property bool edit: false property bool open: window.visible property bool openUpwards: false