summaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-06-24 03:36:07 +0000
committerQMK Bot <hello@qmk.fm>2021-06-24 03:36:07 +0000
commit8d87bfd46a8b9a22b59b3e3096b1bf5909ff10d2 (patch)
tree0d50810de9fc197ebdc8c04a1563bca284b7d961 /lib/python
parent9b65154e58d39bda9cbe0f71474cc255835fff1b (diff)
parent42f4528a4595ddacf7b812a346e912b8c4fa2f96 (diff)
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/qmk/keyboard.py2
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]