Explorar o código

expand the size of the textpad to allow for taller keyboards (#13319)

Zach White %!s(int64=4) %!d(string=hai) anos
pai
achega
42f4528a45
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      lib/python/qmk/keyboard.py

+ 1 - 1
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]