mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
UPD: Don't show splash in client mode
This commit is contained in:
parent
b9ea68d48e
commit
c102f51d0a
1 changed files with 5 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue