gdkevents: Fallback to the event device seat
There's places where we don't set a seat yet, plus the places outside GTK+ where events are created, we should warn and fall back to the master device seat with these.
This commit is contained in:
@ -2333,6 +2333,20 @@ gdk_event_get_seat (const GdkEvent *event)
|
|||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
priv = (const GdkEventPrivate *) event;
|
priv = (const GdkEventPrivate *) event;
|
||||||
|
|
||||||
|
if (!priv->seat)
|
||||||
|
{
|
||||||
|
GdkDevice *device;
|
||||||
|
|
||||||
|
g_warning ("Event with type %d not holding a GdkSeat. "
|
||||||
|
"It is most likely synthesized outside Gdk/GTK+\n",
|
||||||
|
event->type);
|
||||||
|
|
||||||
|
device = gdk_event_get_device (event);
|
||||||
|
|
||||||
|
return device ? gdk_device_get_seat (device) : NULL;
|
||||||
|
}
|
||||||
|
|
||||||
return priv->seat;
|
return priv->seat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user