Skip to content

Commit 786ef41

Browse files
Keyboard app: reduce font size from 22 to 20
1 parent 16cbe8a commit 786ef41

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal_filesystem/lib/mpos/ui/keyboard.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,8 @@ class MposKeyboard:
105105
def __init__(self, parent):
106106
# Create underlying LVGL keyboard widget
107107
self._keyboard = lv.keyboard(parent)
108-
self._keyboard.set_style_text_font(lv.font_montserrat_22,0)
108+
# self._keyboard.set_popovers(True) # disabled for now because they're quite ugly on LVGL 9.3 - maybe better on 9.4?
109+
self._keyboard.set_style_text_font(lv.font_montserrat_20,0)
109110

110111
# Store textarea reference (we DON'T pass it to LVGL to avoid double-typing)
111112
self._textarea = None

0 commit comments

Comments
 (0)