From 8776cedd278ab0830f4f621d013e7ef75efbb9d1 Mon Sep 17 00:00:00 2001 From: Mark Date: Mon, 3 Jul 2017 14:46:31 +0200 Subject: [PATCH] Add margins to buttons and progressBar so they align CURA-3856 --- plugins/PluginBrowser/PluginBrowser.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/PluginBrowser/PluginBrowser.qml b/plugins/PluginBrowser/PluginBrowser.qml index fc9612a798..f992efa926 100644 --- a/plugins/PluginBrowser/PluginBrowser.qml +++ b/plugins/PluginBrowser/PluginBrowser.qml @@ -33,6 +33,7 @@ UM.Dialog text: catalog.i18nc("@action:button", "Refresh") onClicked: manager.requestPluginList() anchors.right: parent.right + anchors.rightMargin: -3 } } ScrollView @@ -68,7 +69,8 @@ UM.Dialog anchors.left:parent.left anchors.right: closeButton.left anchors.rightMargin: UM.Theme.getSize("default_margin").width - height: 10 + anchors.bottomMargin: 4 + height: UM.Theme.getSize("default_margin").height value: manager.downloadProgress } @@ -80,6 +82,7 @@ UM.Dialog onClicked: base.close() anchors.bottom: parent.bottom anchors.right: parent.right + anchors.rightMargin: -3 } }