Commit 817937e8 authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx: don't do AppKit stuff from non-main threads (fixes #5139)

parent 9a4d1e7c
...@@ -265,7 +265,7 @@ void updateProgressPanel (void *priv, const char *text, float value) ...@@ -265,7 +265,7 @@ void updateProgressPanel (void *priv, const char *text, float value)
void destroyProgressPanel (void *priv) void destroyProgressPanel (void *priv)
{ {
NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init]; NSAutoreleasePool *o_pool = [[NSAutoreleasePool alloc] init];
[[[VLCMain sharedInstance] coreDialogProvider] destroyProgressPanel]; [[[VLCMain sharedInstance] coreDialogProvider] performSelectorOnMainThread:@selector(destroyProgressPanel) withObject: nil waitUntilDone: NO];
[o_pool release]; [o_pool release];
} }
......
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