FpWeb: correctly enable edit controls when New HTTP Server Application dialog is shown

This commit is contained in:
Maxim Ganetsky 2021-12-18 01:44:08 +03:00
parent 4f73a1d210
commit c55ec94d74

View File

@ -56,15 +56,18 @@ uses fpWebStrConsts;
{ TNewHTTPApplicationForm }
procedure TNewHTTPApplicationForm.FormCreate(Sender: TObject);
var
SF: TServeFiles;
begin
SF:=ServeFiles;
ELocation.Enabled:=(Sf=sfSingleRoute);
DEDocumentRoot.Enabled:=(Sf<>sfNoFiles);
LocalizeForm;
end;
procedure TNewHTTPApplicationForm.RBNoFilesChange(Sender: TObject);
Var
SF : TServeFiles;
var
SF: TServeFiles;
begin
SF:=ServeFiles;
ELocation.Enabled:=(Sf=sfSingleRoute);