mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-18 10:32:43 +00:00
Revert "Repeat key down events are needed for proper key repeating"
This key repeat filtering seems to be needed now. See #800. This reverts commit 53dccbde2a5b04d9cb1b9833386f9baf85bb9b89.
This commit is contained in:
parent
1ccbbdd4fb
commit
8f91fe4cd1
@ -1016,6 +1016,11 @@ public class Game extends Activity implements SurfaceHolder.Callback,
|
||||
return true;
|
||||
}
|
||||
|
||||
// Eat repeat down events
|
||||
if (event.getRepeatCount() > 0) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Pass through keyboard input if we're not grabbing
|
||||
if (!grabbedInput) {
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user