Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'resources/qml/MainWindow/ApplicationMenu.qml')
-rw-r--r--resources/qml/MainWindow/ApplicationMenu.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/resources/qml/MainWindow/ApplicationMenu.qml b/resources/qml/MainWindow/ApplicationMenu.qml
index 62b3a71ee8..497c5e1541 100644
--- a/resources/qml/MainWindow/ApplicationMenu.qml
+++ b/resources/qml/MainWindow/ApplicationMenu.qml
@@ -196,13 +196,13 @@ Item
}
}
- // show the Toolbox
+ // show the Marketplace
Connections
{
- target: Cura.Actions.browsePackages
+ target: Cura.Actions.openMarketplace
function onTriggered()
{
- curaExtensions.callExtensionMethod("Toolbox", "launch")
+ curaExtensions.callExtensionMethod("Marketplace", "show")
}
}
@@ -212,8 +212,8 @@ Item
target: Cura.Actions.marketplaceMaterials
function onTriggered()
{
- curaExtensions.callExtensionMethod("Toolbox", "launch")
- curaExtensions.callExtensionMethod("Toolbox", "setViewCategoryToMaterials")
+ curaExtensions.callExtensionMethod("Marketplace", "show")
+ curaExtensions.callExtensionMethod("Marketplace", "setVisibleTabToMaterials")
}
}
-} \ No newline at end of file
+}