aboutsummaryrefslogtreecommitdiffhomepage
path: root/video/out/cocoa/events_view.h
diff options
context:
space:
mode:
authorGravatar Stefano Pigozzi <stefano.pigozzi@gmail.com>2015-01-01 14:38:08 +0100
committerGravatar Stefano Pigozzi <stefano.pigozzi@gmail.com>2015-01-01 14:38:08 +0100
commit64b6b2ea458f679ec0370878b1e54b2b1822c4b1 (patch)
tree0e694a2818886a6654f4ddf2b42af937d997214b /video/out/cocoa/events_view.h
parent39548ad9e961794e023aef0e281089064dd41f36 (diff)
cocoa: fix uninitialization while in fullscreen
This is only needed for switching video track with `_`, since Cocoa automatically handles cleaning up the application's presentation options when quitting the process. Fixes #1399
Diffstat (limited to 'video/out/cocoa/events_view.h')
-rw-r--r--video/out/cocoa/events_view.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/video/out/cocoa/events_view.h b/video/out/cocoa/events_view.h
index ff2500a7bc..a16a2d7d5a 100644
--- a/video/out/cocoa/events_view.h
+++ b/video/out/cocoa/events_view.h
@@ -21,5 +21,6 @@
@interface MpvEventsView : NSView <NSDraggingDestination>
@property(nonatomic, retain) MpvCocoaAdapter *adapter;
- (void)setFullScreen:(BOOL)willBeFullscreen;
+- (void)clear;
- (BOOL)canHideCursor;
@end