[vlc-commits] macosx: don't show the playlist on stop in minimized mode (refs #6213)
Felix Paul Kühne
git at videolan.org
Tue Feb 28 00:30:15 CET 2012
vlc/vlc-2.0 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Mon Feb 27 21:40:18 2012 +0100| [bc900dc207ddcef08ed04f5bcbed26cb95468c37] | committer: Jean-Baptiste Kempf
macosx: don't show the playlist on stop in minimized mode (refs #6213)
(cherry picked from commit 23d755550b26259906b9d36443f20c0e2f3f1b56)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.0.git/?a=commit;h=bc900dc207ddcef08ed04f5bcbed26cb95468c37
---
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 e82fea3..c9788ba 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])
More information about the vlc-commits
mailing list