From 644451f4d9f3850eeea166f9eb534c652dc7ace4 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 21 Jul 2013 20:56:45 +0200 Subject: cocoa_common: fix regression in draggable state computation Regression introduced in 8fb064de5. Prevented the OSC from working correctly. --- video/out/cocoa_common.m | 1 + 1 file changed, 1 insertion(+) diff --git a/video/out/cocoa_common.m b/video/out/cocoa_common.m index 4be65ae054..b280b54a31 100644 --- a/video/out/cocoa_common.m +++ b/video/out/cocoa_common.m @@ -884,6 +884,7 @@ int vo_cocoa_cgl_color_size(struct vo *vo) - (void)signalMouseMovement:(NSEvent *)event { + [self recalcDraggableState]; NSPoint p = [self convertPoint:[event locationInWindow] fromView:nil]; vo_mouse_movement(self.videoOutput, p.x, p.y); } -- cgit v1.2.3