You've already forked MicroPythonOS
mirror of
https://github.com/m5stack/MicroPythonOS.git
synced 2026-05-20 11:51:27 -07:00
Keyboard app: reduce font size from 22 to 20
This commit is contained in:
@@ -105,7 +105,8 @@ class MposKeyboard:
|
||||
def __init__(self, parent):
|
||||
# Create underlying LVGL keyboard widget
|
||||
self._keyboard = lv.keyboard(parent)
|
||||
self._keyboard.set_style_text_font(lv.font_montserrat_22,0)
|
||||
# self._keyboard.set_popovers(True) # disabled for now because they're quite ugly on LVGL 9.3 - maybe better on 9.4?
|
||||
self._keyboard.set_style_text_font(lv.font_montserrat_20,0)
|
||||
|
||||
# Store textarea reference (we DON'T pass it to LVGL to avoid double-typing)
|
||||
self._textarea = None
|
||||
|
||||
Reference in New Issue
Block a user