Clean up more errors

Contributes to CL-1051
This commit is contained in:
Ian Paschal 2018-10-16 09:34:50 +02:00
parent 1fa7a8880b
commit b99bc06d1c
5 changed files with 10 additions and 8 deletions

View file

@ -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;