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:
authorJaime van Kessel <nallath@gmail.com>2018-11-26 11:34:27 +0300
committerJaime van Kessel <nallath@gmail.com>2018-11-26 11:34:27 +0300
commit09af7a9435178bc9a6e811c7ade4889880a745f9 (patch)
tree1daf1e893eaef906585ffc6b4d9c780c56571089 /resources/qml/ActionPanel/SliceProcessWidget.qml
parentb82ea58bc815b28815cd6991230d5a3b4d8ca78d (diff)
Slice button will now be disabled on error
CURA-5959
Diffstat (limited to 'resources/qml/ActionPanel/SliceProcessWidget.qml')
-rw-r--r--resources/qml/ActionPanel/SliceProcessWidget.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/resources/qml/ActionPanel/SliceProcessWidget.qml b/resources/qml/ActionPanel/SliceProcessWidget.qml
index 199b94ab33..05a9345585 100644
--- a/resources/qml/ActionPanel/SliceProcessWidget.qml
+++ b/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()
}