Commit a6abdbb7 authored by fsantini's avatar fsantini

Host commands start with ;@

parent 5a059961
......@@ -30,10 +30,6 @@ class Line(object):
self.imperial = False
self.relative = False
#ignore host commands
if self.raw.startswith("@"):
self.raw = ""
if ";" in self.raw:
self.raw = self.raw.split(";")[0]
......
......@@ -351,7 +351,7 @@ class printcore():
#now only "pause" is implemented as host command
def processHostCommand(self, command):
command = command.lstrip()
if command == "@pause":
if command.startswith(";@pause"):
if self.pronterface != None:
self.pronterface.pause(None)
else:
......@@ -378,7 +378,7 @@ class printcore():
if self.printing and self.queueindex < len(self.mainqueue):
tline = self.mainqueue[self.queueindex]
#check for host command
if tline.lstrip().startswith("@"):
if tline.lstrip().startswith(";@"):
#it is a host command: pop it from the list
self.mainqueue.pop(self.queueindex)
self.processHostCommand(tline)
......
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