diff --git a/README.md b/README.md index 75a9971e3..a34a74ec6 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ A precompiled version is available at http://koti.kapsi.fi/~kliment/printrun/ ## Linux ### Ubuntu/Debian -You can run Printrun directly from source, as there are no packages available yet. Fetch and installx the dependencies using +You can run Printrun directly from source, as there are no packages available yet. Fetch and install the dependencies using 1. `sudo apt-get install python-serial python-wxgtk2.8 python-pyglet python-tornado python-setuptools python-libxml2 python-gobject avahi-daemon libavahi-compat-libdnssd1` 2. `pip install -r requirements.txt` diff --git a/pronsole.py b/pronsole.py index 21a1c2ca4..98c2a2acf 100755 --- a/pronsole.py +++ b/pronsole.py @@ -253,6 +253,7 @@ def __init__(self): self._add(HiddenSetting("project_layer", 0.1)) self._add(HiddenSetting("project_prelift_gcode", "")) self._add(HiddenSetting("project_postlift_gcode", "")) + self._add(HiddenSetting("pause_between_prints", True)) _settings = [] def __setattr__(self, name, value): diff --git a/prontserve.py b/prontserve.py index ae21c5d1d..cb4725e16 100755 --- a/prontserve.py +++ b/prontserve.py @@ -349,7 +349,6 @@ def __init__(self, **kwargs): pronsole.pronsole.__init__(self) EventEmitter.__init__(self) self.settings.sensor_names = {'T': 'extruder', 'B': 'bed'} - self.settings.pause_between_prints = True self.dry_run = kwargs['dry_run'] == True self.stdout = sys.stdout self.ioloop = tornado.ioloop.IOLoop.instance()