mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-12-05 16:51:12 -07:00
Fix QML null warnings
This commit is contained in:
parent
15f4d1231b
commit
65e1314538
3 changed files with 3 additions and 3 deletions
|
|
@ -24,7 +24,7 @@ UM.MainWindow
|
|||
title:
|
||||
{
|
||||
let result = "";
|
||||
if(PrintInformation.jobName != "")
|
||||
if(PrintInformation !== null && PrintInformation.jobName != "")
|
||||
{
|
||||
result += PrintInformation.jobName + " - ";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue