Browse Source

Slice button will now be disabled on error

CURA-5959
Jaime van Kessel 6 years ago
parent
commit
09af7a9435
1 changed files with 2 additions and 2 deletions
  1. 2 2
      resources/qml/ActionPanel/SliceProcessWidget.qml

+ 2 - 2
resources/qml/ActionPanel/SliceProcessWidget.qml

@@ -42,7 +42,7 @@ Column
 
     Cura.IconLabel
     {
-        id: message
+        id: unableToSliceMessage
         width: parent.width
         visible: widget.backendState == UM.Backend.Error
 
@@ -98,7 +98,7 @@ Column
             fixedWidthMode: true
             anchors.fill: parent
             text: catalog.i18nc("@button", "Slice")
-            enabled: !autoSlice && widget.backendState != UM.Backend.Error
+            enabled: widget.backendState != UM.Backend.Error
             visible: widget.backendState == UM.Backend.NotStarted || widget.backendState == UM.Backend.Error
             onClicked: sliceOrStopSlicing()
         }