From 4a49c1cc8d1fecd592784556c26364f51875d8d2 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Wed, 29 Apr 2020 14:14:01 +0200 Subject: [PATCH] Fix bottom margin of the discoveredCloudPrintersScrollView CURA-7022 --- resources/qml/WelcomePages/AddCloudPrintersView.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/qml/WelcomePages/AddCloudPrintersView.qml b/resources/qml/WelcomePages/AddCloudPrintersView.qml index bf7831c5c6..e4e42d1e9e 100644 --- a/resources/qml/WelcomePages/AddCloudPrintersView.qml +++ b/resources/qml/WelcomePages/AddCloudPrintersView.qml @@ -30,10 +30,10 @@ Item anchors { top: parent.top - bottom: finishButton.top left: parent.left leftMargin: UM.Theme.getSize("default_margin").width right: parent.right + bottom: finishButton.top bottomMargin: UM.Theme.getSize("default_margin").height } @@ -105,6 +105,7 @@ Item left: parent.left leftMargin: UM.Theme.getSize("default_margin").width right: parent.right + bottom: parent.bottom } Column