From e02cb78d5758e5e89c687893cd277e1ad7b70073 Mon Sep 17 00:00:00 2001 From: Ian Paschal Date: Mon, 5 Feb 2018 16:39:45 +0100 Subject: [PATCH] CURA-4578 Manually installed plugins handled correctly 3rd-party plugins which were manually installed were listed as uninstall-able instead of disable-able. The distinction between plugins which could be installed or disabled was previously made by whether or not it was 3rd party, but is now made by determining the install location. --- plugins/PluginBrowser/PluginEntry.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/PluginBrowser/PluginEntry.qml b/plugins/PluginBrowser/PluginEntry.qml index 85fc0b91b8..eff9eb8943 100644 --- a/plugins/PluginBrowser/PluginEntry.qml +++ b/plugins/PluginBrowser/PluginEntry.qml @@ -164,7 +164,7 @@ Component { Button { id: removeButton text: "Uninstall" - visible: model.external && model.status == "installed" + visible: model.can_uninstall && model.status == "installed" enabled: !manager.isDownloading style: ButtonStyle { background: Rectangle {