Remove skeleton loading after print jobs received

Contributes to CL-1051
This commit is contained in:
Ian Paschal 2018-10-17 14:28:17 +02:00
parent b99bc06d1c
commit 2dcfc049ba
2 changed files with 11 additions and 1 deletions

View file

@ -70,7 +70,7 @@ Component {
top: queuedLabel.bottom;
topMargin: UM.Theme.getSize("default_margin").height;
}
visible: printJobList.count === 0;
visible: !queuedPrintJobs.visible;
width: Math.min(800 * screenScaleFactor, maximumWidth);
PrintJobInfoBlock {
@ -104,6 +104,7 @@ Component {
bottom: parent.bottom;
}
style: UM.Theme.styles.scrollview;
visible: OutputDevice.receivedPrintJobs;
width: Math.min(800 * screenScaleFactor, maximumWidth);
ListView {