mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-08 22:35:03 -06:00
Do not complain when currentItem is null
Contributes to CURA-342
This commit is contained in:
parent
d6ba70c552
commit
4d2d889604
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ UM.ManagementPage
|
|||
editingEnabled: base.currentItem != null && !base.currentItem.readOnly && editButton.checked;
|
||||
|
||||
properties: materialProperties
|
||||
containerId: base.currentItem.id
|
||||
containerId: base.currentItem != null ? base.currentItem.id : ""
|
||||
}
|
||||
|
||||
QtObject
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue