Skip to content

Commit

Permalink
expand the size of the textpad to allow for taller keyboards (qmk#13319)
Browse files Browse the repository at this point in the history
  • Loading branch information
skullydazed authored Jun 24, 2021
1 parent 2d60444 commit 42f4528
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/qmk/keyboard.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def rules_mk(keyboard):
def render_layout(layout_data, render_ascii, key_labels=None):
"""Renders a single layout.
"""
textpad = [array('u', ' ' * 200) for x in range(50)]
textpad = [array('u', ' ' * 200) for x in range(100)]
style = 'ascii' if render_ascii else 'unicode'
box_chars = BOX_DRAWING_CHARACTERS[style]

Expand Down

0 comments on commit 42f4528

Please sign in to comment.