aboutsummaryrefslogtreecommitdiffstats
path: root/klippy
diff options
context:
space:
mode:
authorArksine <arksine.code@gmail.com>2019-01-31 19:10:25 -0500
committerKevinOConnor <kevin@koconnor.net>2019-02-08 10:53:59 -0500
commitca4e10dbd66b8081e98ea93845c4a15725fded23 (patch)
treef7c018ede412018d49a229e43931721f168c866c /klippy
parent6c10e4bcef874991a7a6ac741eb4a88b41d9d150 (diff)
downloadkutter-ca4e10dbd66b8081e98ea93845c4a15725fded23.tar.gz
kutter-ca4e10dbd66b8081e98ea93845c4a15725fded23.tar.xz
kutter-ca4e10dbd66b8081e98ea93845c4a15725fded23.zip
gcode: add 'abs_extrude' to get_status() dictionary
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'klippy')
-rw-r--r--klippy/gcode.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/klippy/gcode.py b/klippy/gcode.py
index f082f83f..0506e715 100644
--- a/klippy/gcode.py
+++ b/klippy/gcode.py
@@ -104,6 +104,7 @@ class GCodeParser:
'speed_factor': self.speed_factor * 60.,
'speed': self.speed,
'extrude_factor': self.extrude_factor,
+ 'abs_extrude': self.absoluteextrude,
'busy': busy,
'last_xpos': self.last_position[0],
'last_ypos': self.last_position[1],