mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-22 10:21:39 -07:00
Remove binding loops
Contributes to CL-1051
This commit is contained in:
parent
817899686a
commit
34abc48a1a
4 changed files with 21 additions and 24 deletions
|
|
@ -57,8 +57,8 @@ Item {
|
|||
right: parent.right;
|
||||
rightMargin: UM.Theme.getSize("wide_margin").width;
|
||||
}
|
||||
printJob: root.printer.activePrintJob;
|
||||
visible: root.printer.activePrintJob;
|
||||
printJob: root.printer ? root.printer.activePrintJob : null;
|
||||
visible: printJob;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue