From 7a2b609b321b5f37a84b4a7c991dd9a0aab58b8a Mon Sep 17 00:00:00 2001 From: "j.delarago" Date: Wed, 23 Feb 2022 15:28:38 +0100 Subject: [PATCH] Left Margin for Listview items was doubled. Remove margin to left align text with "Add a script" button. Swap default buttons for Cura.Primary/Cura.Secondary Buttons CURA-8688 --- plugins/PostProcessingPlugin/PostProcessingPlugin.qml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index 24dc141fef..17256eb9ea 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -68,7 +68,6 @@ UM.Dialog anchors { left: parent.left - leftMargin: UM.Theme.getSize("default_margin").width right: parent.right rightMargin: base.textMargin } @@ -214,7 +213,7 @@ UM.Dialog } } } - Button + Cura.SecondaryButton { id: addButton text: catalog.i18nc("@action", "Add a script") @@ -453,7 +452,7 @@ UM.Dialog } } - rightButtons: Button + rightButtons: Cura.PrimaryButton { text: catalog.i18nc("@action:button", "Close") onClicked: dialog.accept()