From 910cd298e5be21954186d3386db1aaf0084c2880 Mon Sep 17 00:00:00 2001 From: dolphin6k Date: Sun, 17 Oct 2021 22:49:17 +0900 Subject: [PATCH] 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. | --- win32/tuxpaint.iss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/win32/tuxpaint.iss b/win32/tuxpaint.iss index cecae2c8e..dd2830981 100644 --- a/win32/tuxpaint.iss +++ b/win32/tuxpaint.iss @@ -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();