mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-02-16 10:31:07 +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 53dccbde2a.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user