aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2024-05-15 16:45:34 +0200
committerTim Jenssen <tim.jenssen@qt.io>2024-05-16 15:14:58 +0000
commit17e69ab9686df38ec02715c08e54b120865ca2e7 (patch)
tree381e0a0dbc5e96f0fe451713ed4e96358c264111
parent90faaf8efe7e13ea6e555b1116b8674fb88b1504 (diff)
QmlDesigner: Update EffectsSection tooltipsqds/v4.5qds/4.5
Change-Id: Ib0cf243f84d125ab488ff4f597bbc4dd1637c1d3 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> Reviewed-by: Henning Gründl <henning.gruendl@qt.io>
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml12
1 files changed, 7 insertions, 5 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml
index c7121127d5..3e9a79f8e0 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/EffectsSection.qml
@@ -78,7 +78,6 @@ Section {
}
PropertyLabel {
-
text: qsTr("Visible")
tooltip: qsTr("Toggles the visibility of visual effects on the component.")
visible: root.hasDesignerEffect
@@ -260,8 +259,8 @@ Section {
PropertyLabel {
text: qsTr("Blur")
tooltip: qsTr("Sets the intensity of blur on the selected background component.\n"
- + "The foreground component should be transparent, and the background "
- + "component should be solid.")
+ + "The foreground component should be transparent, and the background "
+ + "component should be opaque.")
}
SecondColumnLayout {
@@ -402,7 +401,8 @@ Section {
PropertyLabel {
text: qsTr("Blur")
- tooltip: qsTr("Sets the intensity of the component shadow.")
+ tooltip: qsTr("Sets the softness of the component shadow. A larger value"
+ + " causes the edges of the shadow to appear more blurry.")
}
SecondColumnLayout {
@@ -419,7 +419,9 @@ Section {
PropertyLabel {
text: qsTr("Spread")
- tooltip: qsTr("Resizes the base shadow of the component by pixels.")
+ tooltip: modelNodeBackend.isInstanceOf("Rectangle")
+ ? qsTr("Resizes the base shadow of the component by pixels.")
+ : qsTr("Only supported for Rectangles.")
enabled: modelNodeBackend.isInstanceOf("Rectangle")
}