Use dispatch_async for -[NSOpenGLContext update]. Fixes #3680

This commit is contained in:
Learath
2021-03-31 10:46:31 -04:00
committed by Ryan C. Gordon
parent eeee730833
commit 033c0abb58
+1 -1
View File
@@ -135,7 +135,7 @@
if ([NSThread isMainThread]) {
[super update];
} else {
dispatch_sync(dispatch_get_main_queue(), ^{ [super update]; });
dispatch_async(dispatch_get_main_queue(), ^{ [super update]; });
}
}