ui: add missing keyboard function

This commit is contained in:
Maxime Desroches
2025-08-01 16:02:25 -07:00
parent 9117a414bb
commit 42ebab1334

View File

@@ -241,6 +241,10 @@ class Keyboard(Widget):
if not self._caps_lock and self._layout_name == "uppercase":
self._layout_name = "lowercase"
def reset(self):
self._render_return_status = -1
self.clear()
if __name__ == "__main__":
gui_app.init_window("Keyboard")