I am using Inno Setup and the graphical installer with InnoTools Downloader to download an updated file during installation.

Does anyone know how to adjust the window height, progress bar and additional data?
I was successfully able to modify other installer controls / controls, e.g. MemoReady.Height: = 100
I cannot find the name of the control that launches the GUI for InnoTools Downloader. I see that a custom page has been created here ...
itd_downloadpage := CreateCustomPage(afterID, ITD_GetString(ITDS_TitleCaption), ITD_GetString(ITDS_TitleDescription));
I tried the following inside it_download.iss under the code:
procedure ITD_NowDoDownload(sender: TWizardPage);
sender.pnlContainer.height := 100; itd_downloadpage.Height := 100 .... and many other combinations.
I reviewed the pascal source code that comes with the package, and I think I can configure and repack the DLL, but this is not the route I would like to go.
I'm lost! Any help is appreciated. Thanks!
source share