From c5606136d281b7963f7153fb7510e96d79eb8a64 Mon Sep 17 00:00:00 2001 From: michi_cc Date: Mon, 5 Aug 2013 20:35:53 +0000 Subject: [PATCH] (svn r25659) -Fix [FS#4420]: [OSX] System mouse cursor could become visible during dragging. (Matthieu) --- src/video/cocoa/event.mm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/video/cocoa/event.mm b/src/video/cocoa/event.mm index e9753fdc71..81de0b7b2f 100644 --- a/src/video/cocoa/event.mm +++ b/src/video/cocoa/event.mm @@ -542,6 +542,15 @@ static bool QZ_PollEvent() _cursor.v_wheel -= (int)([ event deltaY ] * 5 * _settings_client.gui.scrollwheel_multiplier); break; + case NSCursorUpdate: + case NSMouseEntered: + case NSMouseExited: + /* Catch these events if the cursor is dragging. During dragging, we reset + * the mouse position programmatically, which would trigger OS X to show + * the default arrow cursor if the events are propagated. */ + if (_cursor.fix_at) break; + /* FALL THROUGH */ + default: [ NSApp sendEvent:event ]; }