From f15f6e2e377e8784e888f55530cf3fea73481319 Mon Sep 17 00:00:00 2001 From: Jack Ha Date: Mon, 2 Oct 2017 11:55:54 +0200 Subject: [PATCH] CL-457 added margin to top in monitor screen --- plugins/UM3NetworkPrinting/ClusterControlItem.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/plugins/UM3NetworkPrinting/ClusterControlItem.qml b/plugins/UM3NetworkPrinting/ClusterControlItem.qml index 4df0232dcc..194337cca0 100644 --- a/plugins/UM3NetworkPrinting/ClusterControlItem.qml +++ b/plugins/UM3NetworkPrinting/ClusterControlItem.qml @@ -29,9 +29,11 @@ Component id: activePrintersLabel font: UM.Theme.getFont("large") anchors.horizontalCenter: parent.horizontalCenter + anchors.topMargin: UM.Theme.getSize("default_margin").height + anchors.top: parent.top text: Cura.MachineManager.printerOutputDevices[0].name } - + Rectangle { id: printJobArea @@ -233,4 +235,4 @@ Component } } } -} \ No newline at end of file +}