Always show camera icon in monitor tab

Contributes to CL-1063
This commit is contained in:
Ian Paschal 2018-10-30 10:53:43 +01:00
parent b07af898eb
commit adac66b3f7
2 changed files with 23 additions and 14 deletions

View file

@ -32,8 +32,6 @@ Item {
spacing: UM.Theme.getSize("default_margin").height;
width: parent.width;
HorizontalLine {}
PrinterInfoBlock {
printer: root.printer;
printJob: root.printer ? root.printer.activePrintJob : null;
@ -69,16 +67,4 @@ Item {
visible: root.printJob;
}
}
CameraButton {
id: showCameraButton;
anchors {
bottom: contentColumn.bottom;
bottomMargin: Math.round(1.5 * UM.Theme.getSize("default_margin").height);
left: contentColumn.left;
leftMargin: Math.round(0.5 * UM.Theme.getSize("default_margin").width);
}
iconSource: "../svg/camera-icon.svg";
visible: root.printJob;
}
}