pull/36345/head
David 1 week ago
parent d8225a7686
commit c938a52995
  1. 2
      system/ui/widgets/keyboard.py

@ -242,7 +242,7 @@ class Keyboard(Widget):
elif key == BACKSPACE_KEY:
self._input_box.delete_char_before_cursor()
else:
self._input_box.add_char_at_cursor(key)
self._input_box.add_text_at_cursor(key)
if not self._caps_lock and self._layout_name == "uppercase":
self._layout_name = "lowercase"

Loading…
Cancel
Save