mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 16:55:30 +00:00
Register mouse drag as well as move.
This commit is contained in:
parent
46856dc21d
commit
86a5399534
|
@ -403,6 +403,9 @@ namespace OpenTK.Platform.MacOS
|
|||
}
|
||||
break;
|
||||
|
||||
case NSEventType.LeftMouseDragged:
|
||||
case NSEventType.RightMouseDragged:
|
||||
case NSEventType.OtherMouseDragged:
|
||||
case NSEventType.MouseMoved:
|
||||
{
|
||||
var pf = Cocoa.SendPoint(e, selLocationInWindowOwner);
|
||||
|
|
Loading…
Reference in a new issue