diff --git a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml index 293e918d92..9863bd9a93 100644 --- a/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml +++ b/plugins/Toolbox/resources/qml/components/ToolboxFooter.qml @@ -44,7 +44,11 @@ Item } height: UM.Theme.getSize("toolbox_footer_button").height text: catalog.i18nc("@info:button, %1 is the application name", "Quit %1").arg(CuraApplication.applicationDisplayName) - onClicked: toolbox.restart() + onClicked: + { + base.hide() + toolbox.restart() + } } ToolboxShadow