diff options
Diffstat (limited to 'pugl')
-rw-r--r-- | pugl/pugl_osx.m | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/pugl/pugl_osx.m b/pugl/pugl_osx.m index 7e543a8..86c3c34 100644 --- a/pugl/pugl_osx.m +++ b/pugl/pugl_osx.m @@ -268,15 +268,6 @@ getModifiers(PuglView* view, NSEvent* ev) } } -- (void) rightMouseDragged:(NSEvent*)event -{ - if (puglview->motionFunc) { - NSPoint loc = [event locationInWindow]; - puglview->mods = getModifiers(puglview, event); - puglview->motionFunc(puglview, loc.x, puglview->height - loc.y); - } -} - - (void) mouseDown:(NSEvent*)event { if (puglview->mouseFunc) { |