mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-04-17 14:00:04 +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;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Eat repeat down events
|
||||||
|
if (event.getRepeatCount() > 0) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
// Pass through keyboard input if we're not grabbing
|
// Pass through keyboard input if we're not grabbing
|
||||||
if (!grabbedInput) {
|
if (!grabbedInput) {
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Reference in New Issue
Block a user