]> git.sesse.net Git - vlc/commitdiff
macosx: fix behaviour when closing black main window in native fullscreen (fixes...
authorDavid Fuhrmann <david.fuhrmann@googlemail.com>
Thu, 3 Oct 2013 11:28:19 +0000 (13:28 +0200)
committerDavid Fuhrmann <david.fuhrmann@googlemail.com>
Thu, 3 Oct 2013 11:39:18 +0000 (13:39 +0200)
modules/gui/macosx/Windows.m

index 6094363a957d92cc6ba0500889034f0cb3833bb4..2e06f028f34bd237b1c5151643db9729ecd5374d 100644 (file)
     if (!([self styleMask] & NSTitledWindowMask)) {
         [[NSNotificationCenter defaultCenter] postNotificationName:NSWindowWillCloseNotification object:self];
 
-        [self orderOut: sender];
+        [self close];
     } else
         [super performClose: sender];
 }