Bug fix: lower pen in manual mode

pull/149/head^2
Windell Oskay 2021-07-18 14:13:29 -07:00
rodzic 132a21cb4d
commit c835a66dfb
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1021,7 +1021,7 @@ class EggBot(inkex.Effect):
def penDown(self):
self.virtualPenIsUp = False # Virtual pen keeps track of state for resuming plotting.
if self.bPenIsUp: # Continue only if pen state is up (or unknown)
if self.bPenIsUp or self.bPenIsUp == None:: # Continue only if pen state is up (or unknown)
if not self.resumeMode and not self.bStopped: # skip if we're resuming or stopped
self.bPenIsUp = False
if self.penDownActivatesEngraver: