Commit 52eae1b9 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: fixed rare crash when reshaping the video view (fixes #5740)

parent 7d626846
...@@ -1645,7 +1645,7 @@ unsigned int CocoaKeyToVLC( unichar i_key ) ...@@ -1645,7 +1645,7 @@ unsigned int CocoaKeyToVLC( unichar i_key )
{ {
b_active_videoplayback = b_value; b_active_videoplayback = b_value;
[o_mainwindow setVideoplayEnabled]; [o_mainwindow setVideoplayEnabled];
[o_mainwindow togglePlaylist:nil]; [o_mainwindow performSelectorOnMainThread:@selector(togglePlaylist:) withObject: nil waitUntilDone:NO];
} }
- (BOOL)activeVideoPlayback - (BOOL)activeVideoPlayback
......
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