diff options
Diffstat (limited to 'pugl/detail/mac.m')
-rw-r--r-- | pugl/detail/mac.m | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pugl/detail/mac.m b/pugl/detail/mac.m index 64590c6..5f7e126 100644 --- a/pugl/detail/mac.m +++ b/pugl/detail/mac.m @@ -366,6 +366,12 @@ handleCrossing(PuglWrapperView* view, NSEvent* event, const PuglEventType type) puglview->impl->mouseTracked = false; } +- (void) cursorUpdate:(NSEvent*)event +{ + (void)event; + [puglview->impl->cursor set]; +} + - (void) mouseMoved:(NSEvent*)event { const NSPoint wloc = [self eventLocation:event]; |