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/uc1701.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/uc1701.py')
-rw-r--r-- | klippy/extras/display/uc1701.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/klippy/extras/display/uc1701.py b/klippy/extras/display/uc1701.py index ea4efb94..55d3ed2f 100644 --- a/klippy/extras/display/uc1701.py +++ b/klippy/extras/display/uc1701.py @@ -12,7 +12,6 @@ BACKGROUND_PRIORITY_CLOCK = 0x7fffffff00000000 TextGlyphs = { 'right_arrow': '\x1a' } class UC1701: - char_right_arrow = '\x1a' CURRENT_BUF, OLD_BUF = 0, 1 EMPTY_CHAR = (0, 32, 255) def __init__(self, config): |