mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-09 23:05:01 -06:00
Fix null warning in QML
CURA-5943
This commit is contained in:
parent
bf8a04fa40
commit
698409803d
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ Column
|
|||
Label
|
||||
{
|
||||
id: materialLabel
|
||||
text: printCoreConfiguration.material.name
|
||||
text: printCoreConfiguration.material == null ? "" : printCoreConfiguration.material.name
|
||||
renderType: Text.NativeRendering
|
||||
elide: Text.ElideRight
|
||||
width: parent.width
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue