mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-16 03:07:53 -06:00
Small fixes (mostly QML warnings and the like).
done as part of CURA-9422
This commit is contained in:
parent
4ea437ba28
commit
afeec473f6
4 changed files with 4 additions and 6 deletions
|
@ -153,7 +153,7 @@ Item
|
|||
|
||||
MonitorPrinterPill
|
||||
{
|
||||
text: printJob.configuration.printerType
|
||||
text: printJob ? printJob.configuration.printerType : ""
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -173,7 +173,7 @@ Item
|
|||
id: printerConfiguration
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
buildplate: catalog.i18nc("@label", "Glass")
|
||||
configurations: base.printJob.configuration.extruderConfigurations
|
||||
configurations: base.printJob ? base.printJob.configuration.extruderConfigurations : null
|
||||
height: Math.round(72 * screenScaleFactor) // TODO: Theme!
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue