From 1f4c5744402856329d9a2cb5bd982462041329b5 Mon Sep 17 00:00:00 2001 From: David Jeannot Date: Mon, 5 Mar 2012 21:14:34 -0500 Subject: devdraw: fix mouse warping with multi-monitor on OS X R=rsc CC=plan9port.codebot http://codereview.appspot.com/5748043 --- src/cmd/devdraw/cocoa-screen.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/cmd/devdraw/cocoa-screen.m b/src/cmd/devdraw/cocoa-screen.m index 9cc0e134..81ee0398 100644 --- a/src/cmd/devdraw/cocoa-screen.m +++ b/src/cmd/devdraw/cocoa-screen.m @@ -1035,11 +1035,11 @@ setmouse(Point p) in.mpos = NSMakePoint(p.x, p.y); // race condition - r = [[WIN screen] frame]; - q = [win.content convertPoint:in.mpos toView:nil]; q = [WIN convertBaseToScreen:q]; - q.y = r.size.height - q.y; + + r = [[[NSScreen screens] objectAtIndex:0] frame]; + q.y = r.size.height - q.y; /* Quartz is top-left-based here */ CGWarpMouseCursorPosition(NSPointToCGPoint(q)); } -- cgit v1.2.3