Fix typo in variable name

This commit is contained in:
Ghostkeeper 2016-06-08 10:45:32 +02:00
parent 761d3f1a27
commit af484b03d8
No known key found for this signature in database
GPG key ID: 701948C5954A7385
2 changed files with 3 additions and 3 deletions

View file

@ -61,7 +61,7 @@ Item {
onLoaded: { onLoaded: {
settingLoader.item.showRevertButton = false settingLoader.item.showRevertButton = false
settingLoader.item.showInheritButton = false settingLoader.item.showInheritButton = false
settingLoader.item.doDepthIdentation = false settingLoader.item.doDepthIndentation = false
} }
sourceComponent: sourceComponent:

View file

@ -20,7 +20,7 @@ Item {
property var showRevertButton: true property var showRevertButton: true
property var showInheritButton: true property var showInheritButton: true
property var doDepthIdentation: true property var doDepthIndentation: true
// Create properties to put property provider stuff in (bindings break in qt 5.5.1 otherwise) // Create properties to put property provider stuff in (bindings break in qt 5.5.1 otherwise)
property var state: propertyProvider.properties.state property var state: propertyProvider.properties.state
@ -101,7 +101,7 @@ Item {
id: label; id: label;
anchors.left: parent.left; anchors.left: parent.left;
anchors.leftMargin: doDepthIdentation ? (UM.Theme.getSize("section_icon_column").width + 5) + ((definition.depth - 1) * UM.Theme.getSize("setting_control_depth_margin").width) : 0 anchors.leftMargin: doDepthIndentation ? (UM.Theme.getSize("section_icon_column").width + 5) + ((definition.depth - 1) * UM.Theme.getSize("setting_control_depth_margin").width) : 0
anchors.right: settingControls.left; anchors.right: settingControls.left;
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter