Style improvements

Contributes to CL-897 and CL-1051
This commit is contained in:
Ian Paschal 2018-10-17 16:32:30 +02:00
parent 6f33c4410c
commit 1ad008f45c
4 changed files with 10 additions and 6 deletions

View file

@ -36,7 +36,6 @@ Item {
anchors {
left: parent.left;
right: parent.right;
top: parent.top;
}
color: {
if(configurationChangeToggle.containsMouse) {

View file

@ -15,7 +15,6 @@ Item {
// Extruder circle
Item {
id: extruderCircle;
anchors.verticalCenter: parent.verticalCenter;
height: UM.Theme.getSize("monitor_tab_extruder_circle").height;
width: UM.Theme.getSize("monitor_tab_extruder_circle").width;

View file

@ -39,8 +39,8 @@ Item {
Popup {
id: popup;
background: Item {
height: childrenRect.height;
width: childrenRect.width;
height: popup.height;
width: popup.width;
DropShadow {
anchors.fill: pointedRectangle;

View file

@ -10,6 +10,7 @@ import QtQuick.Controls 1.4 as LegacyControls
import UM 1.3 as UM
Item {
id: root;
property var printer: null;
property var printJob: printer ? printer.activePrintJob : null;
property var collapsed: true;
@ -38,10 +39,13 @@ Item {
printJob: root.printer ? root.printer.activePrintJob : null;
}
HorizontalLine {}
HorizontalLine {
visible: root.printJob;
}
Row {
height: childrenRect.height;
visible: root.printJob;
width: parent.width;
PrintJobTitle {
@ -60,8 +64,9 @@ Item {
PrintJobPreview {
job: root.printer && root.printer.activePrintJob ? root.printer.activePrintJob : null;
anchors.horizontalCenter: parent.horizontalCenter;
job: root.printer && root.printer.activePrintJob ? root.printer.activePrintJob : null;
visible: root.printJob;
}
}
@ -74,5 +79,6 @@ Item {
leftMargin: Math.round(0.5 * UM.Theme.getSize("default_margin").width);
}
iconSource: "../svg/camera-icon.svg";
visible: root.printJob;
}
}