Commit 0193a9db authored by Kliment Yanev's avatar Kliment Yanev

Disable parsing of end.gcode and pause.gcode by default so an unintended...

Disable parsing of end.gcode and pause.gcode by default so an unintended end.gcode in the working directory doesn't perform unexpected commands. Fixes #733
parent 7ca952d7
...@@ -147,8 +147,8 @@ class PronterWindow(MainWindow, pronsole.pronsole): ...@@ -147,8 +147,8 @@ class PronterWindow(MainWindow, pronsole.pronsole):
color = hexcolor_to_float(getattr(self.settings, cleanname), 4) color = hexcolor_to_float(getattr(self.settings, cleanname), 4)
setattr(self, cleanname, list(color)) setattr(self, cleanname, list(color))
self.pauseScript = "pause.gcode" self.pauseScript = None #"pause.gcode"
self.endScript = "end.gcode" self.endScript = None #"end.gcode"
self.filename = filename self.filename = filename
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment