Remove device-id restriction from TouchScreenButton input events

Remove the restriction that only devices with id 0 are used
for `TouchScreenButton`-Input events.
This allows emulated events to be used for TouchScreenButton.
This commit is contained in:
Markus Sauermann 2023-02-17 01:19:57 +01:00
parent c7aadab155
commit 699608804f

View File

@ -194,10 +194,6 @@ void TouchScreenButton::input(const Ref<InputEvent> &p_event) {
return;
}
if (p_event->get_device() != 0) {
return;
}
const InputEventScreenTouch *st = Object::cast_to<InputEventScreenTouch>(*p_event);
if (passby_press) {