Fixed a font problem in the ComponentsDiskSpaceLabel
Code:
..................... ComponentsPage := CreateCustomPage(SystemPage.ID, '', '');
ComponentsDiskSpaceLabel.Lbl := TLabel.Create(WizardForm);
ComponentsDiskSpaceLabel.Shd := TLabel.Create(WizardForm);
with ComponentsDiskSpaceLabel.Lbl do begin
Parent := WizardForm;
Transparent := True;
AutoSize := False;
.....................
Edit
.....................
ComponentsPage := CreateCustomPage(SystemPage.ID, '', '');
ComponentsDiskSpaceLabel.Lbl := TLabel.Create(WizardForm);
ComponentsDiskSpaceLabel.Shd := TLabel.Create(WizardForm);
with ComponentsDiskSpaceLabel.Lbl do begin
Parent := WizardForm;
Transparent := True;
AutoSize := True;
....................