mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 10:17:52 -06:00
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.
This commit is contained in:
parent
bc2dafe863
commit
e02cb78d57
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ Component {
|
||||||
Button {
|
Button {
|
||||||
id: removeButton
|
id: removeButton
|
||||||
text: "Uninstall"
|
text: "Uninstall"
|
||||||
visible: model.external && model.status == "installed"
|
visible: model.can_uninstall && model.status == "installed"
|
||||||
enabled: !manager.isDownloading
|
enabled: !manager.isDownloading
|
||||||
style: ButtonStyle {
|
style: ButtonStyle {
|
||||||
background: Rectangle {
|
background: Rectangle {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue