mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
X11: search all XI2 touch devices, not just masters (thanks, Volumetic!).
Otherwise, you won't find touch devices that aren't currently assigned to a system cursor.
This commit is contained in:
parent
554b2b0e36
commit
05e78b3f49
@ -183,7 +183,7 @@ X11_InitXinput2Multitouch(_THIS)
|
||||
SDL_VideoData *data = (SDL_VideoData *) _this->driverdata;
|
||||
XIDeviceInfo *info;
|
||||
int ndevices,i,j;
|
||||
info = X11_XIQueryDevice(data->display, XIAllMasterDevices, &ndevices);
|
||||
info = X11_XIQueryDevice(data->display, XIAllDevices, &ndevices);
|
||||
|
||||
for (i = 0; i < ndevices; i++) {
|
||||
XIDeviceInfo *dev = &info[i];
|
||||
|
Loading…
Reference in New Issue
Block a user