mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 23:23:57 -06:00
Slice button will now be disabled on error
CURA-5959
This commit is contained in:
parent
b82ea58bc8
commit
09af7a9435
1 changed files with 2 additions and 2 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue