mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Pause autoslicing while the MachineSettingsAction is open
Each setting-change would cause a reslice, which is unnecessary.
This commit is contained in:
parent
4d12ab1296
commit
ba229444b7
2 changed files with 23 additions and 0 deletions
|
|
@ -32,6 +32,18 @@ Cura.MachineAction
|
|||
onTriggered: base.extruderTabsCount = (machineExtruderCountProvider.properties.value > 1) ? parseInt(machineExtruderCountProvider.properties.value) : 0
|
||||
}
|
||||
|
||||
Connections
|
||||
{
|
||||
target: dialog ? dialog : null
|
||||
ignoreUnknownSignals: true
|
||||
// Any which way this action dialog is dismissed, make sure it is properly finished
|
||||
onNextClicked: manager.onFinishAction()
|
||||
onBackClicked: manager.onFinishAction()
|
||||
onAccepted: manager.onFinishAction()
|
||||
onRejected: manager.onFinishAction()
|
||||
onClosing: manager.onFinishAction()
|
||||
}
|
||||
|
||||
anchors.fill: parent;
|
||||
Item
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue