From 52589ffcad03945906a8173762f456e4284cffc2 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 1 Apr 2019 14:29:11 +0200 Subject: [PATCH] Fix incorrect margin CURA-6057 --- .../qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml b/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml index c1ec7481a2..c219ba0eca 100644 --- a/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml +++ b/resources/qml/WelcomePages/AddNetworkOrLocalPrinterContent.qml @@ -34,7 +34,7 @@ Item anchors.top: titleLabel.bottom anchors.left: parent.left anchors.right: parent.right - anchors.margins: UM.Theme.getSize("wide_margin").width + anchors.topMargin: UM.Theme.getSize("wide_margin").height title: catalog.i18nc("@label", "Add a networked printer") contentShown: true // by default expand the network printer list @@ -79,7 +79,7 @@ Item anchors.top: addNetworkPrinterDropDown.bottom anchors.left: parent.left anchors.right: parent.right - anchors.margins: UM.Theme.getSize("wide_margin").width + anchors.topMargin: UM.Theme.getSize("wide_margin").height title: catalog.i18nc("@label", "Add a non-networked printer")