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