From 7ad2e670743f57bd75fe90681bc299c81c8c0cc2 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Wed, 5 Sep 2018 10:09:44 +0200 Subject: [PATCH] Fix margins for active print job name in printer tile for cluster CL-896 --- plugins/UM3NetworkPrinting/ClusterControlItem.qml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/UM3NetworkPrinting/ClusterControlItem.qml b/plugins/UM3NetworkPrinting/ClusterControlItem.qml index 3ab2a2411e..92e07afba6 100644 --- a/plugins/UM3NetworkPrinting/ClusterControlItem.qml +++ b/plugins/UM3NetworkPrinting/ClusterControlItem.qml @@ -323,7 +323,9 @@ Component id: printJobName text: modelData.activePrintJob != null ? modelData.activePrintJob.name : "" font: UM.Theme.getFont("default_bold") - width: parent.width + anchors.left: parent.left + anchors.right: contextButton.left + anchors.rightMargin: UM.Theme.getSize("default_margin").width elide: Text.ElideRight } Label