mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Clean up more errors
Contributes to CL-1051
This commit is contained in:
parent
1fa7a8880b
commit
b99bc06d1c
5 changed files with 10 additions and 8 deletions
|
@ -35,7 +35,7 @@ Item {
|
|||
|
||||
PrinterInfoBlock {
|
||||
printer: root.printer;
|
||||
printJob: root.printer.activePrintJob;
|
||||
printJob: root.printer ? root.printer.activePrintJob : null;
|
||||
}
|
||||
|
||||
HorizontalLine {}
|
||||
|
@ -45,7 +45,7 @@ Item {
|
|||
width: parent.width;
|
||||
|
||||
PrintJobTitle {
|
||||
job: root.printer.activePrintJob;
|
||||
job: root.printer ? root.printer.activePrintJob : null;
|
||||
}
|
||||
PrintJobContextMenu {
|
||||
id: contextButton;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue