We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16cbe8a commit 786ef41Copy full SHA for 786ef41
internal_filesystem/lib/mpos/ui/keyboard.py
@@ -105,7 +105,8 @@ class MposKeyboard:
105
def __init__(self, parent):
106
# Create underlying LVGL keyboard widget
107
self._keyboard = lv.keyboard(parent)
108
- 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?
109
+ self._keyboard.set_style_text_font(lv.font_montserrat_20,0)
110
111
# Store textarea reference (we DON'T pass it to LVGL to avoid double-typing)
112
self._textarea = None
0 commit comments