From 8beac74417295e6ca1bb539ea07310eaac0ed3df Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Tue, 19 Oct 2021 13:46:21 +0200 Subject: [PATCH] Let Marketplace button open Marketplace instead of Toolbox This hijacks the button to open something else. The old Toolbox is no longer accessible now. Contributes to issue CURA-8556. --- resources/qml/MainWindow/ApplicationMenu.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/MainWindow/ApplicationMenu.qml b/resources/qml/MainWindow/ApplicationMenu.qml index 62b3a71ee8..b7a016fabc 100644 --- a/resources/qml/MainWindow/ApplicationMenu.qml +++ b/resources/qml/MainWindow/ApplicationMenu.qml @@ -202,7 +202,7 @@ Item target: Cura.Actions.browsePackages function onTriggered() { - curaExtensions.callExtensionMethod("Toolbox", "launch") + curaExtensions.callExtensionMethod("Marketplace", "show") } }