mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
Fix typo in variable name
This commit is contained in:
parent
761d3f1a27
commit
af484b03d8
2 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue