gdkdevicemanager-xi2: Fix debug outputs for button events

We had the arguments in the wrong order here.
This commit is contained in:
Jasper St. Pierre 2014-06-29 17:58:56 -04:00
parent 62c6ef5a29
commit de5cba4fc9

View File

@ -1227,12 +1227,16 @@ gdk_x11_device_manager_xi2_translate_event (GdkEventTranslator *translator,
GdkDevice *source_device; GdkDevice *source_device;
GDK_NOTE (EVENTS, GDK_NOTE (EVENTS,
g_message ("button %s:\twindow %ld\n\tdevice:%u\n" g_message ("button %s:\twindow %ld\n"
"\tsource device:%u\n\tbutton number: %u\n" "\tdevice:%u\n"
"\tsource device:%u\n"
"\tbutton number: %u\n"
"\tx,y: %.2f %.2f", "\tx,y: %.2f %.2f",
(ev->evtype == XI_ButtonPress) ? "press" : "release", (ev->evtype == XI_ButtonPress) ? "press" : "release",
xev->event, xev->detail, xev->event,
xev->deviceid, xev->sourceid, xev->deviceid,
xev->sourceid,
xev->detail,
xev->event_x, xev->event_y)); xev->event_x, xev->event_y));
if (ev->evtype == XI_ButtonRelease && if (ev->evtype == XI_ButtonRelease &&