Skip to content

Commit

Permalink
Register mouse drag as well as move.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ollhax authored and thefiddler committed Apr 24, 2014
1 parent 46856dc commit 86a5399
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Source/OpenTK/Platform/MacOS/CocoaNativeWindow.cs
Expand Up @@ -403,6 +403,9 @@ public void ProcessEvents()
}
break;

case NSEventType.LeftMouseDragged:
case NSEventType.RightMouseDragged:
case NSEventType.OtherMouseDragged:
case NSEventType.MouseMoved:
{
var pf = Cocoa.SendPoint(e, selLocationInWindowOwner);
Expand Down

0 comments on commit 86a5399

Please sign in to comment.