mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-27 18:25:41 -04:00
Android: Don't ignore virtual input devices
This commit is contained in:
parent
251cffd64e
commit
4786beb0a9
@ -26,7 +26,7 @@ public class EmulationSurfaceView extends SurfaceView {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static boolean isBindableDevice(InputDevice inputDevice) {
|
public static boolean isBindableDevice(InputDevice inputDevice) {
|
||||||
if (inputDevice == null || inputDevice.isVirtual())
|
if (inputDevice == null)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Accept all devices with an axis or buttons, filter in events.
|
// Accept all devices with an axis or buttons, filter in events.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user