QmlDesigner: Update Tooltips for Advanced Section

This patch update tooltip text for Advanced Section fields
in Property editor.

Fixes: QDS-8805
Change-Id: If97f0d42bc53c855fbf6bb1916011d4cbadb95cd
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:
Pranta Dastider
2023-01-17 16:40:53 +01:00
committed by Pranta Ghosh Dastider
parent 5e81f4105a
commit de8c64ab95

View File

@@ -15,6 +15,7 @@ Section {
PropertyLabel { PropertyLabel {
visible: majorQtQuickVersion > 1 visible: majorQtQuickVersion > 1
text: qsTr("Enabled") text: qsTr("Enabled")
tooltip: qsTr("Toggles if the component is enabled to receive mouse and keyboard input.")
} }
SecondColumnLayout { SecondColumnLayout {
@@ -32,6 +33,7 @@ Section {
PropertyLabel { PropertyLabel {
text: qsTr("Smooth") text: qsTr("Smooth")
tooltip: qsTr("Uses smooth filtering when the image is scaled or transformed.")
blockedByTemplate: !backendValues.smooth.isAvailable blockedByTemplate: !backendValues.smooth.isAvailable
} }
@@ -49,6 +51,7 @@ Section {
PropertyLabel { PropertyLabel {
text: qsTr("Antialiasing") text: qsTr("Antialiasing")
tooltip: qsTr("Refines the edges of the image.")
blockedByTemplate: !backendValues.antialiasing.isAvailable blockedByTemplate: !backendValues.antialiasing.isAvailable
} }
@@ -102,7 +105,7 @@ Section {
PropertyLabel { PropertyLabel {
text: qsTr("Baseline offset") text: qsTr("Baseline offset")
tooltip: qsTr("Position of the component's baseline in local coordinates.") tooltip: qsTr("Sets the position of the component's baseline in local coordinates.")
blockedByTemplate: !backendValues.baselineOffset.isAvailable blockedByTemplate: !backendValues.baselineOffset.isAvailable
} }