From f5877d3bce2e6f9f16f2cd58413c4b6c249d7038 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Wed, 13 Mar 2024 12:00:32 +0100 Subject: [PATCH] Fix post processing plugin button alignment This was caused by the label within the component spanning multiple lines, causing the height of the component to increase. Since the buttons were vertically aligned the positioning of these buttons are impacted. CURA-11697 --- plugins/PostProcessingPlugin/PostProcessingPlugin.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml index 0f379479ba..47eb1e5507 100644 --- a/plugins/PostProcessingPlugin/PostProcessingPlugin.qml +++ b/plugins/PostProcessingPlugin/PostProcessingPlugin.qml @@ -120,6 +120,8 @@ UM.Dialog UM.Label { Layout.fillWidth: true + Layout.preferredHeight: height + elide: Text.ElideRight text: manager.getScriptLabelByKey(modelData.toString()) }