Corrected indentation of spindle direction logic (to reflect functioning live/dev code)

pull/291/head
Jag H. 2025-06-27 13:48:03 -07:00
rodzic 94a7c3929f
commit 869ec05264
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -738,9 +738,9 @@ class Creator(nc.Creator):
else:
# Normal spindle start (existing code)
if clockwise:
self.s.set(s, self.SPINDLE_CW(), self.SPINDLE_CCW())
else:
self.s.set(s, self.SPINDLE_CCW(), self.SPINDLE_CW())
self.s.set(s, self.SPINDLE_CW(), self.SPINDLE_CCW())
else:
self.s.set(s, self.SPINDLE_CCW(), self.SPINDLE_CW())
def coolant(self, mode=0):
if mode <= 0: