Search code examples
inno-setupinno-download-plugin

Inno Download Plugin - Resizeable?


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


Solution

  • 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