You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-06-22 22:17:48 +02:00
Use MultiExeProcessing on Mac
This commit is contained in:
@ -1209,10 +1209,14 @@ begin
|
||||
if (FStatus <> asLoading) then
|
||||
Result := False
|
||||
else
|
||||
{$IFDEF MACOSX}
|
||||
Result := MultiExeProcessing;
|
||||
{$ELSE}
|
||||
if not(FSingleProcess) and (length(FBrowserSubprocessPath) > 0) then
|
||||
Result := MultiExeProcessing
|
||||
else
|
||||
Result := SingleExeProcessing;
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
// This function can only be called by the executable used for the subprocesses.
|
||||
|
Reference in New Issue
Block a user