Skip to content

Commit

Permalink
Merge pull request #36 from jpcurti/32-large-filename-gcode-crashes-t…
Browse files Browse the repository at this point in the history
…he-plugin

fix bug when trying to draw large strings on the TJC display
  • Loading branch information
jpcurti authored Jun 2, 2024
2 parents 247a83c + c0cb2aa commit a7f0751
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion klippy/extras/TJC3224.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def draw_string(
self.byte(size) # size
self.word(font_color)
self.word(background_color)
self.string(string)
self.string(string[:40])
self.send()

def draw_int_value(
Expand Down

0 comments on commit a7f0751

Please sign in to comment.