From 6b6446e201a50bcb250d8061c3ae116be8014a28 Mon Sep 17 00:00:00 2001 From: Kostas Karmas Date: Tue, 31 Mar 2020 11:22:07 +0200 Subject: [PATCH] Wrap the restart prompt text in Marketplace CURA-7332 --- plugins/Toolbox/resources/qml/components/ToolboxFooter.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml index 8408f94fe7..ac7b8d1ca0 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml @@ -17,6 +17,7 @@ Item Label { text: catalog.i18nc("@info", "You will need to restart Cura before changes in packages have effect.") + wrapMode: Text.Wrap color: UM.Theme.getColor("text") height: UM.Theme.getSize("toolbox_footer_button").height verticalAlignment: Text.AlignVCenter @@ -25,7 +26,7 @@ Item top: restartButton.top left: parent.left leftMargin: UM.Theme.getSize("wide_margin").width - right: restartButton.right + right: restartButton.left rightMargin: UM.Theme.getSize("default_margin").width } renderType: Text.NativeRendering