Inno Setup shows COPYING.txt as follows with "Next" and "Cancel" buttons.

Setup - Tux Paint 0.9.27

  Information
    Please read the following important information before continuing.
------------------------------------------------------------------------
    When you are ready to continue with Setup, click Next.

    ---------------------------------
   | COPYING.txt for Tux Paint
   |
   |Tux Paint - A simple drawing program for children.
   |
This commit is contained in:
dolphin6k 2021-10-17 22:49:17 +09:00
parent d7f0a47e37
commit 910cd298e5

View file

@ -38,6 +38,7 @@ DefaultDirName={pf}\{#AppDirName}
DefaultGroupName={#AppGroupName}
OutputDir=.\
OutputBaseFilename={#AppPrefix}-{#AppVersion}-windows-installer
InfoBeforeFile={#BdistDir}\{#AppLicense}
SetupIconFile={#BdistDir}\data\images\tuxpaint-installer.ico
WizardStyle=modern
Compression=lzma2
@ -243,7 +244,7 @@ var
Page: TWizardPage;
Enabled, InstallAllUsers: Boolean;
begin
Page := CreateCustomPage(wpLicense, 'Choose Installation Type', 'Who do you want to be able to use this program?');
Page := CreateCustomPage(wpInfoBefore, 'Choose Installation Type', 'Who do you want to be able to use this program?');
InstallTypePageID := Page.ID;
Enabled := NotRestricted();
InstallAllUsers := NotRestricted();