aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorHenning Gruendl <henning.gruendl@qt.io>2021-08-30 12:43:06 +0200
committerHenning Gründl <henning.gruendl@qt.io>2021-08-30 13:14:04 +0000
commit06ea1627139e86c9eb32b4a41f3bd505e7f513a5 (patch)
tree018f53616da6d5c97cea530b7d97c3f4baca3c2d /share
parent870b619c856b49003cc8e4aac554d537e5505117 (diff)
QmlDesigner: Fix typo in property name
Change-Id: I9256a3b1b6010cbab930a000a2bc7deb049f3942 Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml
index 6e63651539..b1767d0691 100644
--- a/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml
+++ b/share/qtcreator/qmldesigner/propertyEditorQmlSources/QtQuick/GeometrySection.qml
@@ -36,7 +36,7 @@ Section {
anchors.left: parent.left
anchors.right: parent.right
- readonly property string disbaledTooltip: qsTr("This property is defined by an anchor or a layout.")
+ readonly property string disabledTooltip: qsTr("This property is defined by an anchor or a layout.")
function positionDisabled() {
return anchorBackend.isFilled || anchorBackend.isInLayout
@@ -88,7 +88,7 @@ Section {
ControlLabel {
text: "X"
- tooltip: xSpinBox.enabled ? "X" : root.disbaledTooltip
+ tooltip: xSpinBox.enabled ? "X" : root.disabledTooltip
enabled: xSpinBox.enabled
}
@@ -109,7 +109,7 @@ Section {
ControlLabel {
text: "Y"
- tooltip: xSpinBox.enabled ? "Y" : root.disbaledTooltip
+ tooltip: xSpinBox.enabled ? "Y" : root.disabledTooltip
enabled: ySpinBox.enabled
}
/*
@@ -143,7 +143,7 @@ Section {
ControlLabel {
//: The width of the object
text: qsTr("W", "width")
- tooltip: widthSpinBox.enabled ? qsTr("Width") : root.disbaledTooltip
+ tooltip: widthSpinBox.enabled ? qsTr("Width") : root.disabledTooltip
enabled: widthSpinBox.enabled
}
@@ -165,7 +165,7 @@ Section {
ControlLabel {
//: The height of the object
text: qsTr("H", "height")
- tooltip: heightSpinBox.enabled ? qsTr("Height") : root.disbaledTooltip
+ tooltip: heightSpinBox.enabled ? qsTr("Height") : root.disabledTooltip
enabled: heightSpinBox.enabled
}
/*