We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f35c0d commit a4fa421Copy full SHA for a4fa421
shared/ux.py
@@ -29,8 +29,9 @@
29
# How many characters can we fit on each line? How many lines?
30
# (using FontSmall) .. except it's an approximation since variable-width font.
31
# - even 19 could work sometimes, but not when line is completely full
32
+ # - 18 will always fit, even if line full, one char can be only half visible
33
# - really should look at rendered-width of text
- CH_PER_W = 19
34
+ CH_PER_W = 18
35
STORY_H = 5
36
from ux_mk4 import PressRelease, ux_enter_number, ux_input_text, ux_show_pin
37
from ux_mk4 import ux_login_countdown, ux_dice_rolling, ux_render_words
0 commit comments