From 9a03e8640bd93d2d6e078015eba68149561bd4cd Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Fri, 2 Dec 2016 13:39:39 +0100 Subject: [PATCH] Added spacers to workspace dialog CURA-1263 --- plugins/3MFReader/WorkspaceDialog.qml | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/plugins/3MFReader/WorkspaceDialog.qml b/plugins/3MFReader/WorkspaceDialog.qml index 2f155e7266..1373c52025 100644 --- a/plugins/3MFReader/WorkspaceDialog.qml +++ b/plugins/3MFReader/WorkspaceDialog.qml @@ -20,7 +20,7 @@ UM.Dialog minimumHeight: 350 * Screen.devicePixelRatio; maximumHeight: 350 * Screen.devicePixelRatio; property int comboboxHeight: 20 - + property int spacerHeight: 10 onClosing: manager.notifyClosed() onVisibleChanged: { @@ -73,7 +73,7 @@ UM.Dialog } Item // Spacer { - height: 5 + height: spacerHeight width: height } @@ -118,6 +118,11 @@ UM.Dialog } } } + Item // Spacer + { + height: spacerHeight + width: height + } Label { @@ -176,13 +181,17 @@ UM.Dialog } visible: manager.numSettingsOverridenByQualityChanges != 0 } + Item // Spacer + { + height: spacerHeight + width: height + } Label { text: catalog.i18nc("@action:label", "Material settings") font.bold: true } - Row { width: parent.width @@ -218,6 +227,11 @@ UM.Dialog } } } + Item // Spacer + { + height: spacerHeight + width: height + } Label {