mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07: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
|
Label
|
||||||
{
|
{
|
||||||
id: materialLabel
|
id: materialLabel
|
||||||
text: printCoreConfiguration.material.name
|
text: printCoreConfiguration.material == null ? "" : printCoreConfiguration.material.name
|
||||||
renderType: Text.NativeRendering
|
renderType: Text.NativeRendering
|
||||||
elide: Text.ElideRight
|
elide: Text.ElideRight
|
||||||
width: parent.width
|
width: parent.width
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue