mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-28 21:31:15 -07:00
Fix binding loop warnings that would sometimes occur when editing Brand entry
Contributes to CURA-342
This commit is contained in:
parent
a7585a4b9a
commit
5393beb8de
1 changed files with 2 additions and 2 deletions
|
|
@ -129,7 +129,7 @@ UM.ManagementPage
|
||||||
|
|
||||||
enabled: base.currentItem != null && !base.currentItem.readOnly
|
enabled: base.currentItem != null && !base.currentItem.readOnly
|
||||||
|
|
||||||
checkable: true
|
checkable: enabled
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -144,7 +144,7 @@ UM.ManagementPage
|
||||||
bottom: parent.bottom
|
bottom: parent.bottom
|
||||||
}
|
}
|
||||||
|
|
||||||
editingEnabled: base.currentItem != null && !base.currentItem.readOnly && editButton.checked;
|
editingEnabled: editButton.checkable && editButton.checked;
|
||||||
|
|
||||||
properties: materialProperties
|
properties: materialProperties
|
||||||
containerId: base.currentItem != null ? base.currentItem.id : ""
|
containerId: base.currentItem != null ? base.currentItem.id : ""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue