Update autocapitalisation on Enter

This commit is contained in:
Jules Aguillon 2024-09-10 21:53:52 +02:00
parent 231c08eb97
commit c886a89b11

View File

@ -74,6 +74,9 @@ public final class Autocapitalisation
if (_cursor > 0) _cursor--;
_should_update_caps_mode = true;
break;
case KeyEvent.KEYCODE_ENTER:
_should_update_caps_mode = true;
break;
}
callback(true);
}