1
0
Fork 0

removed support for Escape key, it wasn't working properly anyway

This commit is contained in:
sspanak 2024-04-16 11:07:58 +03:00 committed by Dimo Karaivanov
parent 2e31f78169
commit 3d1b1cd6ff

View file

@ -51,7 +51,7 @@ public class Key {
public static boolean isBack(int keyCode) {
return keyCode == KeyEvent.KEYCODE_BACK || keyCode == KeyEvent.KEYCODE_ESCAPE;
return keyCode == KeyEvent.KEYCODE_BACK;
}