From fcff00e9daa3d056a65a261b01ace85e760e6271 Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Wed, 21 Feb 2018 14:42:28 +0100 Subject: [PATCH] Remove plugins from preferences since they're now managed via the plugin browser --- resources/qml/Cura.qml | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/resources/qml/Cura.qml b/resources/qml/Cura.qml index f474d93900..799797f9f9 100644 --- a/resources/qml/Cura.qml +++ b/resources/qml/Cura.qml @@ -518,6 +518,9 @@ UM.MainWindow insertPage(4, catalog.i18nc("@title:tab", "Profiles"), Qt.resolvedUrl("Preferences/ProfilesPage.qml")); + // Remove plug-ins page because we will use the shiny new plugin browser: + removePage(5); + //Force refresh setPage(0); } @@ -629,17 +632,6 @@ UM.MainWindow } } - // show the installed plugins page in the preferences dialog - Connections - { - target: Cura.Actions.configurePlugins - onTriggered: - { - preferences.visible = true - preferences.setPage(5) - } - } - UM.ExtensionModel { id: curaExtensions }