mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-30 05:21:47 -06:00
Merge pull request #2610 from fieldOfView/fix_machinesettings_backend_crash
Fix crash when exiting Machine Settings
This commit is contained in:
commit
eebe4028ff
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class MachineSettingsAction(MachineAction):
|
||||||
@pyqtSlot()
|
@pyqtSlot()
|
||||||
def onFinishAction(self):
|
def onFinishAction(self):
|
||||||
# Restore autoslicing when the machineaction is dismissed
|
# Restore autoslicing when the machineaction is dismissed
|
||||||
if self._backend.determineAutoSlicing():
|
if self._backend and self._backend.determineAutoSlicing():
|
||||||
self._backend.tickle()
|
self._backend.tickle()
|
||||||
|
|
||||||
def _onActiveExtruderStackChanged(self):
|
def _onActiveExtruderStackChanged(self):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue