moved defines to configuration
git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2263 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
parent
4605b49113
commit
a1ff4f5102
1 changed files with 14 additions and 14 deletions
|
@ -7,20 +7,6 @@
|
|||
|
||||
!include "MUI.nsh"
|
||||
|
||||
;$9 is being used to store the Start Menu Folder.
|
||||
;Do not use this variable in your script (or Push/Pop it)!
|
||||
|
||||
;To change this variable, use MUI_STARTMENUPAGE_VARIABLE.
|
||||
;Have a look at the Readme for info about other options (default folder,
|
||||
;registry).
|
||||
|
||||
;Remember the Start Menu Folder
|
||||
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
||||
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\${MUI_PRODUCT}"
|
||||
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
|
||||
|
||||
!define TEMP $R0
|
||||
|
||||
;--------------------------------
|
||||
;Configuration
|
||||
|
||||
|
@ -29,7 +15,21 @@
|
|||
|
||||
;Folder selection page
|
||||
InstallDir "$PROGRAMFILES\${MUI_PRODUCT}"
|
||||
|
||||
;$9 is being used to store the Start Menu Folder.
|
||||
;Do not use this variable in your script (or Push/Pop it)!
|
||||
|
||||
;To change this variable, use MUI_STARTMENUPAGE_VARIABLE.
|
||||
;Have a look at the Readme for info about other options (default folder,
|
||||
;registry).
|
||||
|
||||
;Remember the Start Menu Folder
|
||||
!define MUI_STARTMENUPAGE_REGISTRY_ROOT "HKCU"
|
||||
!define MUI_STARTMENUPAGE_REGISTRY_KEY "Software\${MUI_PRODUCT}"
|
||||
!define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "Start Menu Folder"
|
||||
|
||||
!define TEMP $R0
|
||||
|
||||
;--------------------------------
|
||||
;Modern UI Configuration
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue