Browse Source

Installer - always allow to use the "Show details" functionality

By using the NSIS MUI_FINISHPAGE_NOAUTOCLOSE, the installer will always wait for the user Next-click confirmation before it goes to the last Finish-page.

Otherwise, sometimes even during the installation phase, the details of the installation activities cannot be displayed (probably some problem with the focus of the NSIS installer prevents the "Show details" button from being successfully clicked).
pull/15719/head
xomx 1 month ago committed by GitHub
parent
commit
9d9f80fd2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      PowerEditor/installer/nppSetup.nsi

2
PowerEditor/installer/nppSetup.nsi

@ -85,7 +85,7 @@ page Custom ExtraOptions
!define MUI_PAGE_CUSTOMFUNCTION_SHOW "CheckIfRunning" !define MUI_PAGE_CUSTOMFUNCTION_SHOW "CheckIfRunning"
!insertmacro MUI_PAGE_INSTFILES !insertmacro MUI_PAGE_INSTFILES
!define MUI_FINISHPAGE_NOAUTOCLOSE
!define MUI_FINISHPAGE_RUN !define MUI_FINISHPAGE_RUN
!define MUI_FINISHPAGE_RUN_FUNCTION "LaunchNpp" !define MUI_FINISHPAGE_RUN_FUNCTION "LaunchNpp"
!insertmacro MUI_PAGE_FINISH !insertmacro MUI_PAGE_FINISH

Loading…
Cancel
Save