mirror of https://gitlab.com/basile.b/dexed.git
always hide client console
This commit is contained in:
parent
ca5a44530f
commit
d4da82f505
|
|
@ -75,9 +75,7 @@ begin
|
||||||
fClient := TProcess.Create(self);
|
fClient := TProcess.Create(self);
|
||||||
fClient.Executable := clientName;
|
fClient.Executable := clientName;
|
||||||
fClient.Options := [poUsePipes{$IFDEF WINDOWS}, poNewConsole{$ENDIF}{$IFDEF LINUX}, poWaitOnExit{$ENDIF}];
|
fClient.Options := [poUsePipes{$IFDEF WINDOWS}, poNewConsole{$ENDIF}{$IFDEF LINUX}, poWaitOnExit{$ENDIF}];
|
||||||
{$IFNDEF DEBUG}
|
|
||||||
fClient.ShowWindow := swoHIDE;
|
fClient.ShowWindow := swoHIDE;
|
||||||
{$ENDIF}
|
|
||||||
//
|
//
|
||||||
fServerWasRunning := AppIsRunning((serverName));
|
fServerWasRunning := AppIsRunning((serverName));
|
||||||
if not fServerWasRunning then begin
|
if not fServerWasRunning then begin
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue