summaryrefslogtreecommitdiffstats
path: root/video/out/cocoa/window.m
diff options
context:
space:
mode:
Diffstat (limited to 'video/out/cocoa/window.m')
-rw-r--r--video/out/cocoa/window.m6
1 files changed, 4 insertions, 2 deletions
diff --git a/video/out/cocoa/window.m b/video/out/cocoa/window.m
index 6d63263cb4..68e5222a03 100644
--- a/video/out/cocoa/window.m
+++ b/video/out/cocoa/window.m
@@ -309,7 +309,8 @@
_unfs_content_frame = [self frameRect:_unfs_content_frame forCenteredContentSize:newSize];
}
-- (void)tryDequeueSize {
+- (void)tryDequeueSize
+{
if (_queued_video_size.width <= 0.0 || _queued_video_size.height <= 0.0)
return;
@@ -330,7 +331,8 @@
}
}
-- (void)windowDidBecomeMain:(NSNotification *)notification {
+- (void)windowDidBecomeMain:(NSNotification *)notification
+{
[self tryDequeueSize];
}
@end