QmlDesigner: Update Tooltips for Spin Box Section

This patch update tooltip text for Spin Box section fields
in Property editor.

Fixes: QDS-9176
Change-Id: I57f8e18f49fe62d60566338f25f2ba0d8d1334e3
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-16 19:33:26 +01:00
committed by Pranta Ghosh Dastider
parent b6bfa5bd1f
commit 68a77477c1

View File

@@ -16,7 +16,7 @@ Column {
SectionLayout { SectionLayout {
PropertyLabel { PropertyLabel {
text: qsTr("Value") text: qsTr("Value")
tooltip: qsTr("The current value of the spin box.") tooltip: qsTr("Sets the current value of the spin box.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -34,7 +34,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("From") text: qsTr("From")
tooltip: qsTr("The starting value of the spin box range.") tooltip: qsTr("Sets the lowest value of the spin box range.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -52,7 +52,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("To") text: qsTr("To")
tooltip: qsTr("The ending value of the spin box range.") tooltip: qsTr("Sets the highest value of the spin box range.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -70,7 +70,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Step size") text: qsTr("Step size")
tooltip: qsTr("The step size of the spin box.") tooltip: qsTr("Sets the number by which the spin box value changes.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -88,7 +88,7 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Editable") text: qsTr("Editable")
tooltip: qsTr("Whether the spin box is editable.") tooltip: qsTr("Toggles if the spin box is editable.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -104,7 +104,8 @@ Column {
PropertyLabel { PropertyLabel {
text: qsTr("Wrap") text: qsTr("Wrap")
tooltip: qsTr("Whether the spin box values wrap.") tooltip: qsTr("Toggles if the spin box wraps around when \n"
+ "it reaches the start or end.")
} }
SecondColumnLayout { SecondColumnLayout {