Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions obs-browser-plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -507,9 +507,15 @@ static void BrowserShutdown(void)
#ifndef ENABLE_BROWSER_QT_LOOP
static void BrowserManagerThread(obs_data_t *settings)
{
BrowserInit(settings);
CefRunMessageLoop();
BrowserShutdown();
#ifdef __APPLE__
ExecuteSyncTask([&settings]() {
#endif
BrowserInit(settings);
CefRunMessageLoop();
BrowserShutdown();
#ifdef __APPLE__
});
#endif
}
#endif

Expand Down
Loading