QmlDesigner: Update Tooltips for Range Slider Section

This patch update tooltip text for Range Slider section fields
in Property editor.

Fixes: QDS-9180
Change-Id: I2ecf5a325812dae40d99a73353dc20c77f8da6ff
Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io>
Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
Pranta Dastider
2023-02-17 16:30:09 +01:00
committed by Pranta Ghosh Dastider
parent b44b88b2e2
commit a81018cabd

View File

@@ -17,7 +17,7 @@ Column {
SectionLayout {
PropertyLabel {
text: qsTr("Value 1")
tooltip: qsTr("The value of the first range slider handle.")
tooltip: qsTr("Sets the value of the first range slider handle.")
}
SecondColumnLayout {
@@ -38,7 +38,7 @@ Column {
implicitWidth: StudioTheme.Values.twoControlColumnWidth
+ StudioTheme.Values.actionIndicatorWidth
backendValue: backendValues.live
tooltip: qsTr("Whether the range slider provides live value updates.")
tooltip: qsTr("Toggles if the range slider provides live value updates.")
}
ExpandingSpacer {}
@@ -47,7 +47,7 @@ Column {
PropertyLabel {
text: qsTr("Value 2")
tooltip: qsTr("The value of the second range slider handle.")
tooltip: qsTr("Sets the value of the second range slider handle.")
}
SecondColumnLayout {
@@ -66,7 +66,7 @@ Column {
PropertyLabel {
text: qsTr("From")
tooltip: qsTr("The starting value of the range slider range.")
tooltip: qsTr("Sets the minimum value of the range slider.")
}
SecondColumnLayout {
@@ -85,7 +85,7 @@ Column {
PropertyLabel {
text: qsTr("To")
tooltip: qsTr("The ending value of the range slider range.")
tooltip: qsTr("Sets the maximum value of the range slider.")
}
SecondColumnLayout {
@@ -104,7 +104,8 @@ Column {
PropertyLabel {
text: qsTr("Step size")
tooltip: qsTr("The step size of the range slider.")
tooltip: qsTr("Sets the interval between the steps.\n"
+ "This functions if <b>Snap mode</b> is selected.")
}
SecondColumnLayout {
@@ -123,7 +124,7 @@ Column {
PropertyLabel {
text: qsTr("Drag threshold")
tooltip: qsTr("The threshold (in logical pixels) at which a drag event will be initiated.")
tooltip: qsTr("Sets the threshold at which a drag event begins.")
}
SecondColumnLayout {
@@ -141,7 +142,8 @@ Column {
PropertyLabel {
text: qsTr("Snap mode")
tooltip: qsTr("The snap mode of the range slider.")
tooltip: qsTr("Sets how the slider handles snaps to the steps\n"
+ "defined in step size.")
}
SecondColumnLayout {
@@ -159,7 +161,7 @@ Column {
PropertyLabel {
text: qsTr("Orientation")
tooltip: qsTr("The orientation of the range slider.")
tooltip: qsTr("Sets the orientation of the range slider.")
}
SecondColumnLayout {