1

Is it possible to make the Inno Download Plugin wizard page support resizing? It doesn't fit well in Inno 6.

Size of wizard page

Andrew Truckle
  • 17,769
  • 16
  • 66
  • 164

1 Answers1

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];

enter image description here

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