diff --git a/macos/Sources/Ghostty/SurfaceView_AppKit.swift b/macos/Sources/Ghostty/SurfaceView_AppKit.swift index 1e9708f0f..8148118fb 100644 --- a/macos/Sources/Ghostty/SurfaceView_AppKit.swift +++ b/macos/Sources/Ghostty/SurfaceView_AppKit.swift @@ -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 }