FIX: Process running state

This commit is contained in:
Alexander Koblov 2022-08-28 19:47:48 +03:00
commit e2aecba435

View file

@ -135,7 +135,8 @@ end;
procedure TExProcess.Stop;
begin
FStop:= (not FProcess.Running) or (FProcess.Terminate(-1));
FStop:= True;
FProcess.Terminate(-1);
end;
procedure TExProcess.SetCmdLine(CommandLine: String);