Hi, I'm using a NSTrackingArea in a view to receive mouseMoved events. The cursor location in the mouseMoved and mouseDragged events have non-integer coordinates (as expected). e.g. x:140.601562 y:128.082031
However, the mouseDown and mouseUp events always produce truncated coordinates. e.g. x:140.000000 y:128.000000 This causes inaccuracy with hit testing between mouseMoved and mouseDown. All the mouse events use the same code to convert the point for the view : NSPoint location = [self convertPoint:[theEvent locationInWindow] fromView:nil]; Logged as e.g. NSLog(@"moved x:%f y:%f", location.x, location.y); What is the correct way to obtain coordinates that are consistent across all the mouse events ? Thanks. Steven (Xcode 4.2.1 64bit LLVM 3.0 ARC) _______________________________________________ Cocoa-dev mailing list (Cocoa-dev@lists.apple.com) Please do not post admin requests or moderator comments to the list. Contact the moderators at cocoa-dev-admins(at)lists.apple.com Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/cocoa-dev/archive%40mail-archive.com This email sent to arch...@mail-archive.com