Merge branch 'master' of github.com:Ultimaker/Cura

This commit is contained in:
Jaime van Kessel 2017-02-22 09:43:45 +01:00
commit e32c67ccd3
2 changed files with 13 additions and 4 deletions

View file

@ -587,3 +587,8 @@ class CuraEngineBackend(QObject, Backend):
auto_slice = self.determineAutoSlicing()
if auto_slice:
self._change_timer.start()
## Tickle the backend so in case of auto slicing, it starts the timer.
def tickle(self):
if self._use_timer:
self._change_timer.start()