SDL2: Fix Home and End keys not working in text editing contexts

This commit is contained in:
Jonathan G Rennison
2019-10-25 23:26:17 +01:00
parent a8657f4c40
commit 5bf52ab736

View File

@@ -859,6 +859,8 @@ int VideoDriver_SDL::PollEvent()
keycode == WKC_RIGHT || keycode == WKC_RIGHT ||
keycode == WKC_UP || keycode == WKC_UP ||
keycode == WKC_DOWN || keycode == WKC_DOWN ||
keycode == WKC_HOME ||
keycode == WKC_END ||
keycode & WKC_META || keycode & WKC_META ||
keycode & WKC_CTRL || keycode & WKC_CTRL ||
keycode & WKC_ALT || keycode & WKC_ALT ||