From 89eb04f3be5521db284ba26c9b3c3663a74edabd Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Tue, 21 Feb 2023 17:36:03 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for Dial Section This patch update tooltip text for Dial section fields in Property editor. Fixes: QDS-9206 Change-Id: If3033bb6258339bf1d9dbdd2bfed788e65e6ecb1 Reviewed-by: Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../QtQuick/Controls/DialSpecifics.qml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml index 93d53e0052c..0bf345b8605 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml @@ -17,7 +17,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Value") - tooltip: qsTr("The current value of the dial and whether it provides live value updates.") + tooltip: qsTr("Sets the value of the dial.") } SecondColumnLayout { @@ -46,7 +46,7 @@ Column { PropertyLabel { text: qsTr("From") - tooltip: qsTr("The starting value of the dial range.") + tooltip: qsTr("Sets the minimum value of the dial.") } SecondColumnLayout { @@ -66,7 +66,7 @@ Column { PropertyLabel { text: qsTr("To") - tooltip: qsTr("The ending value of the dial range.") + tooltip: qsTr("Sets the maximum value of the dial.") } SecondColumnLayout { @@ -86,7 +86,7 @@ Column { PropertyLabel { text: qsTr("Step size") - tooltip: qsTr("The step size of the dial.") + tooltip: qsTr("Sets the number by which the dial value changes.") } SecondColumnLayout { @@ -106,7 +106,8 @@ Column { PropertyLabel { text: qsTr("Snap mode") - tooltip: qsTr("The snap mode of the dial.") + tooltip: qsTr("Sets how the dial's handle snaps to the steps\n" + + "defined in Step size.") } SecondColumnLayout { @@ -124,7 +125,7 @@ Column { PropertyLabel { text: qsTr("Input mode") - tooltip: qsTr("How the dial tracks movement.") + tooltip: qsTr("Sets how the user can interact with the dial.") } SecondColumnLayout { @@ -142,7 +143,7 @@ Column { PropertyLabel { text: qsTr("Wrap") - tooltip: qsTr("Whether the dial wraps when dragged.") + tooltip: qsTr("Toggles if the dial wraps around when it reaches the start or end.") } SecondColumnLayout {