diff options
author | Zach White <skullydazed@gmail.com> | 2021-06-23 20:35:36 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 20:35:36 -0700 |
commit | 42f4528a4595ddacf7b812a346e912b8c4fa2f96 (patch) | |
tree | 4e5fe7fd9a7c51204194d60c9c91aa6c26afb271 /lib/python | |
parent | 2d60444df12b7d0b1dfafe197217c9edb7944eab (diff) |
expand the size of the textpad to allow for taller keyboards (#13319)
Diffstat (limited to 'lib/python')
-rw-r--r-- | lib/python/qmk/keyboard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/qmk/keyboard.py b/lib/python/qmk/keyboard.py index 06c9df874f..c87ea9050b 100644 --- a/lib/python/qmk/keyboard.py +++ b/lib/python/qmk/keyboard.py @@ -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] |