mirror of https://gitlab.com/basile.b/dexed.git
fix for the linux version, run outside, show console
This commit is contained in:
parent
399c4b38a1
commit
d4e63e4fd9
|
@ -1297,6 +1297,11 @@ begin
|
|||
fRunProc.ShowWindow := swoHIDE;
|
||||
fRunProc.OnReadData := @asyncprocOutput;
|
||||
fRunProc.OnTerminate:= @asyncprocTerminate;
|
||||
end else
|
||||
begin
|
||||
{$IFDEF LINUX}
|
||||
fRunProc.Options := fRunProc.Options + [poNewConsole];
|
||||
{$ENDIF}
|
||||
end;
|
||||
|
||||
dmdproc := TProcess.Create(nil);
|
||||
|
|
Loading…
Reference in New Issue