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: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io>
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
Pranta Dastider
2023-02-21 17:46:05 +01:00
committed by Pranta Ghosh Dastider
parent ef6ab90d1c
commit b746b357d7

View File

@@ -17,7 +17,7 @@ Column {
SectionLayout { SectionLayout {
PropertyLabel { PropertyLabel {
text: qsTr("Text role") 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 { SecondColumnLayout {
@@ -33,7 +33,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Display text") 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 { SecondColumnLayout {
@@ -49,7 +49,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Current index") text: qsTr("Current index")
tooltip: qsTr("The index of the current item.") tooltip: qsTr("Sets the current item.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -68,7 +68,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Flat") text: qsTr("Flat")
tooltip: qsTr("Whether the combo box button is flat.") tooltip: qsTr("Toggles if the combo box button is flat.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -84,7 +84,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Editable") text: qsTr("Editable")
tooltip: qsTr("Whether the combo box is editable.") tooltip: qsTr("Toggles if the combo box is editable.")
} }
SecondColumnLayout { SecondColumnLayout {