Skip to content

Commit

Permalink
display: Fix percent progress rendering on 16x4 multi-extruder layout
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin O'Connor <[email protected]>
  • Loading branch information
KevinOConnor committed Mar 8, 2020
1 parent 3850b3d commit 986e9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/display/display.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ text:
{% if 'extruder1' in printer %}
# A multi-extruder setup uses an alternate screen layout
{% set progress = printer.display_status.progress %}
{ "{:^6}".format(progress) }
{ "{:^6.0%}".format(progress) }
{% else %}
~feedrate~
{ "{:>4.0%}".format(printer.gcode.speed_factor) }
Expand Down

0 comments on commit 986e9c8

Please sign in to comment.