From 91029f975237de83c02b49272d989780c95d7d62 Mon Sep 17 00:00:00 2001 From: Henning Gruendl Date: Wed, 13 Sep 2023 16:47:48 +0200 Subject: [PATCH] QmlDesigner: Fix ComboBox not closing Change-Id: I562005d3102efafc52cc01b161aeaeba56581095 Reviewed-by: Thomas Hartmann --- .../imports/StudioControls/TopLevelComboBox.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml index 7c475175571..61483feadfb 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/imports/StudioControls/TopLevelComboBox.qml @@ -147,9 +147,9 @@ T.ComboBox { id: itemDelegate onClicked: { + comboBoxPopup.close() control.currentIndex = index control.activated(index) - comboBoxPopup.close() } width: control.width