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

macosx: fixed a crash

parent 54ff6997
......@@ -165,6 +165,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
{
/* we work-around a Cocoa limitation here, since you cannot delay an execution
* on the main thread within a single call */
b_progress_cancelled = NO;
if (VLCIntf)
[self performSelector:@selector(showProgressDialog:) withObject: o_value afterDelay:3.00];
}
......@@ -173,7 +174,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
{
dialog_progress_bar_t *p_dialog = [o_value pointerValue];
if (!p_dialog)
if (!p_dialog || b_progress_cancelled)
return;
if( p_dialog->title != NULL )
......@@ -211,6 +212,7 @@ static VLCCoreDialogProvider *_o_sharedInstance = nil;
-(void)destroyProgressPanel
{
b_progress_cancelled = YES;
[o_prog_bar stopAnimation: self];
[o_prog_win close];
}
......
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