mirror of https://github.com/Desuuuu/klipper.git
display: Remove reference to printer.gcode.busy from display.cfg
The "busy" variable was removed and using it isn't necessary. Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
This commit is contained in:
parent
b490848bc9
commit
118ef908a5
|
@ -53,7 +53,7 @@ text:
|
||||||
text:
|
text:
|
||||||
{% if printer.display_status.message %}
|
{% if printer.display_status.message %}
|
||||||
{ printer.display_status.message }
|
{ printer.display_status.message }
|
||||||
{% elif printer.idle_timeout.printing_time or printer.gcode.busy %}
|
{% elif printer.idle_timeout.printing_time %}
|
||||||
{% set pos = printer.toolhead.position %}
|
{% set pos = printer.toolhead.position %}
|
||||||
{ "X%-4.0fY%-4.0fZ%-5.2f" % (pos.x, pos.y, pos.z) }
|
{ "X%-4.0fY%-4.0fZ%-5.2f" % (pos.x, pos.y, pos.z) }
|
||||||
{% else %}
|
{% else %}
|
||||||
|
|
Loading…
Reference in New Issue