From 5125407b391711982706137755632eb3e8883c63 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Thu, 16 Feb 2023 18:24:40 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for Tumbler Section This patch update tooltip text for Tumbler fields in Property editor. Fixes: QDS-9171 Change-Id: I28755273b02f9624c2e8b47a80692f42b17d0e92 Reviewed-by: Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../QtQuick/Controls/TumblerSpecifics.qml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml index 21f0c081907..cd717e7a325 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/Controls/TumblerSpecifics.qml @@ -16,7 +16,7 @@ Column { SectionLayout { PropertyLabel { text: qsTr("Visible count") - tooltip: qsTr("The count of visible items.") + tooltip: qsTr("Sets the number of items in the model.") } SecondColumnLayout { @@ -34,7 +34,7 @@ Column { PropertyLabel { text: qsTr("Current index") - tooltip: qsTr("The index of the current item.") + tooltip: qsTr("Sets the index of the current item.") } SecondColumnLayout { @@ -52,7 +52,8 @@ Column { PropertyLabel { text: qsTr("Wrap") - tooltip: qsTr("Whether the tumbler values wrap.") + tooltip: qsTr("Toggles if the tumbler wraps around when it reaches the\n" + + "top or bottom.") } SecondColumnLayout {