Commit 20802866 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed corner-case in which the playlist table was displayed instead of...

macosx: fixed corner-case in which the playlist table was displayed instead of the newly created vout
parent 8fa822f7
......@@ -1004,7 +1004,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
if (!b_nonembedded)
{
if (([o_video_view isHidden] && b_activeVideo) || b_restored )
if (([o_video_view isHidden] && b_activeVideo) || b_restored || (b_activeVideo && sender == nil) )
[self makeSplitViewHidden];
else
[self makeSplitViewVisible];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment