vlc | branch: master | Felix Paul Kühne <[email protected]> | Mon Feb 27 21:40:18 2012 +0100| [23d755550b26259906b9d36443f20c0e2f3f1b56] | committer: Felix Paul Kühne
macosx: don't show the playlist on stop in minimized mode (refs #6213) > http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=23d755550b26259906b9d36443f20c0e2f3f1b56 --- modules/gui/macosx/MainWindow.m | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/modules/gui/macosx/MainWindow.m b/modules/gui/macosx/MainWindow.m index 757c96b..ad89d7c 100644 --- a/modules/gui/macosx/MainWindow.m +++ b/modules/gui/macosx/MainWindow.m @@ -598,7 +598,8 @@ static VLCMainWindow *_o_sharedInstance = nil; { if (b_splitview_removed) { - [self showSplitView]; + if( !b_nonembedded ||( sender != nil && b_nonembedded)) + [self showSplitView]; } if (b_dropzone_active && ![[VLCMain sharedInstance] activeVideoPlayback]) _______________________________________________ vlc-commits mailing list [email protected] http://mailman.videolan.org/listinfo/vlc-commits
