From 68a77477c17c957ce5d5927b8c629008a7da6b31 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Thu, 16 Feb 2023 19:33:26 +0100 Subject: [PATCH] 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: Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../QtQuick/Controls/SpinBoxSpecifics.qml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml index 536009a831a..37cbc0b388b 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/SpinBoxSpecifics.qml @@ -16,7 +16,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Value") - tooltip: qsTr("The current value of the spin box.") + tooltip: qsTr("Sets the current value of the spin box.") } SecondColumnLayout { @@ -34,7 +34,7 @@ Column { PropertyLabel { 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 { @@ -52,7 +52,7 @@ Column { PropertyLabel { 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 { @@ -70,7 +70,7 @@ Column { PropertyLabel { 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 { @@ -88,7 +88,7 @@ Column { PropertyLabel { text: qsTr("Editable") - tooltip: qsTr("Whether the spin box is editable.") + tooltip: qsTr("Toggles if the spin box is editable.") } SecondColumnLayout { @@ -104,7 +104,8 @@ Column { PropertyLabel { 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 {