Is it possible to make the Inno Download Plugin wizard page support resizing? It doesn't fit well in Inno 6.
Asked
Active
Viewed 78 times
1 Answers
1
Just set Anchors
properties accordingly after calling idpDownloadAfter
:
idpDownloadAfter(wpReady);
IDPForm.TotalProgressBar.Anchors := [akLeft, akTop, akRight];
IDPForm.FileProgressBar.Anchors := [akLeft, akTop, akRight];
IDPForm.TotalDownloaded.Anchors := [akTop, akRight];
IDPForm.FileDownloaded.Anchors := [akTop, akRight];
IDPForm.DetailsButton.Anchors := [akTop, akRight];

Martin Prikryl
- 188,800
- 56
- 490
- 992