diff --git a/Contrib/Modern UI/Readme.html b/Contrib/Modern UI/Readme.html index 054ac0bf..36900245 100644 --- a/Contrib/Modern UI/Readme.html +++ b/Contrib/Modern UI/Readme.html @@ -178,9 +178,6 @@ will also help you to learn more about the Modern UI.
The icon of the installer.MUI_UNICON icon_file
The icon of the uninstaller.
Default: ${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico
MUI_CHECKBITMAP bitmap_file
- The bitmap with images for the checks of the component select treeview.
- Default: ${NSISDIR}\Contrib\Graphics\Checks\modern.bmp
MUI_HEADERIMAGE
Display an image on the header of page.
Components Page Interface Settings
+MUI_COMPONENTSPAGE_CHECKBITMAP bitmap_file
+ The bitmap with images for the checks of the component select treeview.
+ Default: ${NSISDIR}\Contrib\Graphics\Checks\modern.bmp
Welcome/Finish Page Interface Settings
+MUI_WELCOMEFINISHPAGE_3LINES ini_file
Create a bigger area for the title on the Welcome- and Finish page, to allow displaying 3 lines of text
(with the default font). This setting has no effect when using a custom INI file.
Uninstaller Welcome/Finish Page Interface Settings
+MUI_UNWELCOMEFINISHPAGE_3LINES ini_file
Create a bigger area for the title on the uninstaller Welcome- and Finish page, to allow displaying 3 lines of text
(with the default font). This setting has no effect when using a custom INI file.
License Page Interface Settings
MUI_LICENSEPAGE_BGCOLOR diff --git a/Contrib/Modern UI/System.nsh b/Contrib/Modern UI/System.nsh index b8298bbd..b910c4db 100644 --- a/Contrib/Modern UI/System.nsh +++ b/Contrib/Modern UI/System.nsh @@ -59,8 +59,8 @@ Var MUI_TEMP2 !define MUI_UNICON "${NSISDIR}\Contrib\Graphics\Icons\modern-uninstall.ico" !endif - !ifndef MUI_CHECKBITMAP - !define MUI_CHECKBITMAP "${NSISDIR}\Contrib\Graphics\Checks\modern.bmp" + !ifndef MUI_COMPONENTSPAGE_CHECKBITMAP + !define MUI_COMPONENTSPAGE_CHECKBITMAP "${NSISDIR}\Contrib\Graphics\Checks\modern.bmp" !endif !ifndef MUI_LICENSEPAGE_BGCOLOR @@ -128,7 +128,7 @@ Var MUI_TEMP2 Icon "${MUI_ICON}" UninstallIcon "${MUI_UNICON}" - CheckBitmap "${MUI_CHECKBITMAP}" + CheckBitmap "${MUI_COMPONENTSPAGE_CHECKBITMAP}" LicenseBkColor "${MUI_LICENSEPAGE_BGCOLOR}" InstallColors ${MUI_INSTFILESPAGE_COLORS} InstProgressFlags ${MUI_INSTFILESPAGE_PROGRESSBAR}