UPD: Don't show splash in client mode

This commit is contained in:
Alexander Koblov 2015-10-14 19:59:59 +00:00
commit c102f51d0a

View file

@ -82,6 +82,7 @@ begin
3:
begin
CommandLineParams.Client:= True;
CommandLineParams.NoSplash:= True;
end;
4:
begin
@ -100,7 +101,10 @@ begin
CommandLineParams.ActiveRight:= (UpperCase(OptArg) = 'R');
end;
'T', 't': CommandLineParams.NewTab:= True;
'C', 'c': CommandLineParams.Client:= True;
'C', 'c': begin
CommandLineParams.Client:= True;
CommandLineParams.NoSplash:= True;
end;
'?', ':': DCDebug ('Error with opt : ', OptOpt);
end; { case }
until Option = EndOfOptions;