From 07b2a30dfe9a4410e658fb816a9105050a52c429 Mon Sep 17 00:00:00 2001 From: Alessandro Portale Date: Wed, 10 May 2023 13:01:34 +0200 Subject: [PATCH] Qt Quick Application Wizard: Unify Qt version combobox entries MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The "compat" variant, which was around for a long time, had a Qt version combobox with entries following the "Qt x.yz" scheme. This change adds the Qt prefix also to the combobox of the new wizard. Fixes: QTCREATORBUG-29126 Change-Id: I4cd59f09248ba487077c2dcdd0828222311dd9a7 Reviewed-by: Robert Löhning --- .../wizards/projects/qtquickapplication/wizard.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json b/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json index 8b4165fa35c..dbfe93bbca1 100644 --- a/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json +++ b/share/qtcreator/templates/wizards/projects/qtquickapplication/wizard.json @@ -81,7 +81,11 @@ "type": "ComboBox", "data": { - "items": [ "6.2", "6.4", "6.5" ], + "items": [ + { "trKey": "Qt 6.2", "value": "6.2" }, + { "trKey": "Qt 6.4", "value": "6.4" }, + { "trKey": "Qt 6.5", "value": "6.5" } + ], "index": 1 } }