Reputation: 701
How to show Space required label in Inno setup?
Upvotes: 1
Views: 1148
Reputation: 5472
I think this label is visible by default, but you can change it's visibility with this code:
[Code]
procedure InitializeWizard;
begin
WizardForm.DiskSpaceLabel.Visible := True; // False to hide
end;
Upvotes: 4