From d501f7730a42e45177fa3cdb89a4cdce1f1bd9a4 Mon Sep 17 00:00:00 2001 From: Jaime van Kessel Date: Mon, 2 Mar 2020 10:48:47 +0100 Subject: [PATCH] Show Full name for quit message We're a bit insecure about Cura, so we have to put the company name in front of it ;) --- plugins/Toolbox/resources/qml/components/ToolboxFooter.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml index 6f46e939ff..7a2728d046 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml @@ -42,7 +42,7 @@ Item rightMargin: UM.Theme.getSize("wide_margin").width } height: UM.Theme.getSize("toolbox_footer_button").height - text: catalog.i18nc("@info:button", "Quit Cura") + text: catalog.i18nc("@info:button", "Quit Ultimaker Cura") onClicked: toolbox.restart() }