From b746b357d7073b07060b67e6ed81733efad7c0f1 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Tue, 21 Feb 2023 17:46:05 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for Combo Box Section This patch update tooltip text for Combo Box section fields in Property editor. Fixes: QDS-9205 Change-Id: I62fd4c0fe2a1509d3f5264f7e39bb016fc4ba8a2 Reviewed-by: Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../QtQuick/Controls/ComboBoxSpecifics.qml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml index 45abf4bea92..ccda29a02c1 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/ComboBoxSpecifics.qml @@ -17,7 +17,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Text role") - tooltip: qsTr("The model role used for displaying text.") + tooltip: qsTr("Sets the model role for populating the combo box.") } SecondColumnLayout { @@ -33,7 +33,7 @@ Column { PropertyLabel { text: qsTr("Display text") - tooltip: qsTr("Holds the text that is displayed on the combo box button.") + tooltip: qsTr("Sets the initial display text for the combo box.") } SecondColumnLayout { @@ -49,7 +49,7 @@ Column { PropertyLabel { text: qsTr("Current index") - tooltip: qsTr("The index of the current item.") + tooltip: qsTr("Sets the current item.") } SecondColumnLayout { @@ -68,7 +68,7 @@ Column { PropertyLabel { text: qsTr("Flat") - tooltip: qsTr("Whether the combo box button is flat.") + tooltip: qsTr("Toggles if the combo box button is flat.") } SecondColumnLayout { @@ -84,7 +84,7 @@ Column { PropertyLabel { text: qsTr("Editable") - tooltip: qsTr("Whether the combo box is editable.") + tooltip: qsTr("Toggles if the combo box is editable.") } SecondColumnLayout {