Commit 6f30aac6 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: don't allow option-click on the playlist button in case a video is playing

(cherry picked from commit e6f14b002b2232794d9dfc4a2841d2ea1df2241f)
parent dbc2db4a
...@@ -590,7 +590,7 @@ static VLCMainWindow *_o_sharedInstance = nil; ...@@ -590,7 +590,7 @@ static VLCMainWindow *_o_sharedInstance = nil;
- (IBAction)togglePlaylist:(id)sender - (IBAction)togglePlaylist:(id)sender
{ {
if ( ((([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0) && !b_splitview_removed) || (b_nonembedded && [[VLCMain sharedInstance] activeVideoPlayback] && sender != nil) ) if ( ((([[NSApp currentEvent] modifierFlags] & NSAlternateKeyMask) != 0) && !b_splitview_removed && ![[VLCMain sharedInstance] activeVideoPlayback]) || (b_nonembedded && [[VLCMain sharedInstance] activeVideoPlayback] && sender != nil) )
{ {
[self hideSplitView]; [self hideSplitView];
} }
......
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