diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-09-20 13:01:51 -0400 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2018-09-21 16:39:38 -0400 |
commit | 30a49d3186c8bee11581422901b46be23b07e29e (patch) | |
tree | 192129b2b50a31fd3e0ed63ee57f97988d2ab957 /klippy/extras/display/st7920.py | |
parent | c8d9d575a1eaddf536002b3a4330e5e3b4dc9ad1 (diff) | |
download | kutter-30a49d3186c8bee11581422901b46be23b07e29e.tar.gz kutter-30a49d3186c8bee11581422901b46be23b07e29e.tar.xz kutter-30a49d3186c8bee11581422901b46be23b07e29e.zip |
display: Use write_glyph() when writing special characters
Always use the write_glyph() method when writing special characters
during status screen updates.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/display/st7920.py')
-rw-r--r-- | klippy/extras/display/st7920.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/extras/display/st7920.py b/klippy/extras/display/st7920.py index 4d92c8b1..4ccfcd24 100644 --- a/klippy/extras/display/st7920.py +++ b/klippy/extras/display/st7920.py @@ -15,7 +15,6 @@ ST7920_SYNC_DELAY = .000045 TextGlyphs = { 'right_arrow': '\x1a' } class ST7920: - char_right_arrow = '\x1a' def __init__(self, config): printer = config.get_printer() # pin config |