forked from qt-creator/qt-creator
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: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Mats Honkamaa <mats.honkamaa@qt.io> Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
This commit is contained in:
committed by
Pranta Ghosh Dastider
parent
ec625a3750
commit
6b6ff2aeeb
@@ -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 {
|
||||
|
Reference in New Issue
Block a user