mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-01-04 04:22:43 +00:00
macos: send mouse cursor position events for right mouse dragged
Fixes #2407
This commit is contained in:
@@ -517,6 +517,14 @@ extension Ghostty {
|
||||
self.mouseMoved(with: event)
|
||||
}
|
||||
|
||||
override func rightMouseDragged(with event: NSEvent) {
|
||||
self.mouseMoved(with: event)
|
||||
}
|
||||
|
||||
override func otherMouseDragged(with event: NSEvent) {
|
||||
self.mouseMoved(with: event)
|
||||
}
|
||||
|
||||
override func scrollWheel(with event: NSEvent) {
|
||||
guard let surface = self.surface else { return }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user