mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 04:59:00 +08:00
Do not complain when currentItem is null
Contributes to CURA-342
This commit is contained in:
parent
d6ba70c552
commit
4d2d889604
@ -147,7 +147,7 @@ UM.ManagementPage
|
|||||||
editingEnabled: base.currentItem != null && !base.currentItem.readOnly && editButton.checked;
|
editingEnabled: base.currentItem != null && !base.currentItem.readOnly && editButton.checked;
|
||||||
|
|
||||||
properties: materialProperties
|
properties: materialProperties
|
||||||
containerId: base.currentItem.id
|
containerId: base.currentItem != null ? base.currentItem.id : ""
|
||||||
}
|
}
|
||||||
|
|
||||||
QtObject
|
QtObject
|
||||||
|
Loading…
x
Reference in New Issue
Block a user