diff --git a/hw/xquartz/X11Application.m b/hw/xquartz/X11Application.m index 265819af6..eefa45fbf 100644 --- a/hw/xquartz/X11Application.m +++ b/hw/xquartz/X11Application.m @@ -867,8 +867,6 @@ static void send_nsevent (NSEventType type, NSEvent *e) { pointer_y = (screen.origin.y + screen.size.height) - location.y; } - pointer_y -= aquaMenuBarHeight; - pressure = 0; // for tablets tilt_x = 0; tilt_y = 0; diff --git a/hw/xquartz/darwinEvents.c b/hw/xquartz/darwinEvents.c index afa292fb8..0643e5343 100644 --- a/hw/xquartz/darwinEvents.c +++ b/hw/xquartz/darwinEvents.c @@ -367,6 +367,8 @@ void DarwinSendPointerEvents(int ev_type, int ev_button, int pointer_x, int poin static int darwinFakeMouseButtonMask = 0; int i, num_events; + //DEBUG_LOG("x=%d, y=%d, p=%f, tx=%f, ty=%f\n", pointer_x, pointer_y, pressure, tilt_x, tilt_y); + if(!darwinEvents) { ErrorF("DarwinSendPointerEvents called before darwinEvents was initialized\n"); return;