aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrook Cronin <brook.cronin@qt.io>2024-02-02 13:58:38 +0100
committerBrook Cronin <brook.cronin@qt.io>2024-02-02 13:10:15 +0000
commit916b78aa49806aa79c33446640656268eab468f9 (patch)
treeb119999690443b395db52ed0d61b393927adf064
parent6ff78b73cecec23135a5522adf8f84ff3557f22b (diff)
Qml Designer: fix start and end angle tooltips
Change-Id: Ic854ae254512e5f1789d558bed02f7a020558ffd Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io> Reviewed-by: Pranta Ghosh Dastider <pranta.dastider@qt.io>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
index 92ab3a42ff..8f3abb2ed1 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/DialSpecifics.qml
@@ -106,7 +106,7 @@ Column {
PropertyLabel {
text: qsTr("Start angle")
- tooltip: qsTr("This property holds the starting angle of the dial in degrees.")
+ tooltip: qsTr("Sets the starting angle of the dial in degrees.")
visible: majorQtQuickVersion === 6 && minorQtQuickVersion >= 6
}
@@ -128,7 +128,7 @@ Column {
PropertyLabel {
text: qsTr("End angle")
- tooltip: qsTr("This property holds the ending angle of the dial in degrees.")
+ tooltip: qsTr("Sets the ending angle of the dial in degrees.")
visible: majorQtQuickVersion === 6 && minorQtQuickVersion >= 6
}