vlc | branch: master | David Fuhrmann <[email protected]> | Tue Mar 6 21:30:18 2012 +0100| [df071469ea293d66d4d4288f16150b76902ba86e] | committer: David Fuhrmann
macosx: when we currently play a video in detached window, allow a 'show playlist', too > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=df071469ea293d66d4d4288f16150b76902ba86e --- modules/gui/macosx/MainWindow.m | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m index f7d24ec..9121cc2 100644 --- a/modules/gui/macosx/MainWindow.m +++ b/modules/gui/macosx/MainWindow.m @@ -637,7 +637,7 @@ static VLCMainWindow *_o_sharedInstance = nil; { BOOL b_activeVideo = [[VLCMain sharedInstance] activeVideoPlayback]; - if ( ((([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0) && !b_splitview_removed && !b_activeVideo) || (b_nonembedded && b_activeVideo && sender != nil) ) + if ( !b_splitview_removed && ( (([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0 && !b_activeVideo) || (b_nonembedded && b_activeVideo && sender != nil) )) { [self hideSplitView]; } _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
