From 1b42f550001c11c93d5a2144df98a5c687c010c2 Mon Sep 17 00:00:00 2001 From: Jeremy Huddleston Date: Fri, 22 Aug 2008 00:45:12 -0700 Subject: [PATCH] Xquartz: Added missing ev_type for NSTabletPoint event. (cherry picked from commit 07548f13947a212dcc020d52fe0ad679255121e2) --- hw/xquartz/X11Application.m | 1 + 1 file changed, 1 insertion(+) diff --git a/hw/xquartz/X11Application.m b/hw/xquartz/X11Application.m index eeffd8c18..b53f733c7 100644 --- a/hw/xquartz/X11Application.m +++ b/hw/xquartz/X11Application.m @@ -912,6 +912,7 @@ static void send_nsevent(NSEvent *e) { // fall through to get tablet data case NSTabletPoint: + ev_type = MotionNotify; pressure = [e pressure]; tilt_x = [e tilt].x; tilt_y = [e tilt].y;