From 6b6ff2aeeb1376ccdd6129f32f6781731e4ea3e0 Mon Sep 17 00:00:00 2001 From: Pranta Dastider Date: Wed, 8 Feb 2023 16:57:37 +0100 Subject: [PATCH] QmlDesigner: Update Tooltips for FLOW Section This patch update tooltip text for FLOW fields in Property editor. Fixes: QDS-9066 Change-Id: I097263e66a83673fbc0d6c95515ee5517b6bdf0d Reviewed-by: Reviewed-by: Mats Honkamaa Reviewed-by: Thomas Hartmann --- .../QtQuick/FlowSpecifics.qml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml index 12c5a75a51a..1f56820e4de 100644 --- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml +++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/FlowSpecifics.qml @@ -18,7 +18,10 @@ Column { anchors.right: parent.right SectionLayout { - PropertyLabel { text: qsTr("Spacing") } + PropertyLabel { + text: qsTr("Spacing") + tooltip: qsTr("Sets the spacing between flow items.") + } SecondColumnLayout { SpinBox { @@ -33,7 +36,10 @@ Column { ExpandingSpacer {} } - PropertyLabel { text: qsTr("Flow") } + PropertyLabel { + text: qsTr("Flow") + tooltip: qsTr("Sets the direction of flow items.") + } SecondColumnLayout { ComboBox { @@ -48,7 +54,10 @@ Column { ExpandingSpacer {} } - PropertyLabel { text: qsTr("Layout direction") } + PropertyLabel { + text: qsTr("Layout direction") + tooltip: qsTr("Sets in which direction items in the flow are placed.") + } SecondColumnLayout { ComboBox {