From a1ff4f5102cd77e3a86973b6e434e88bd4057374 Mon Sep 17 00:00:00 2001 From: joostverburg Date: Sun, 9 Mar 2003 22:10:07 +0000 Subject: [PATCH] moved defines to configuration git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@2263 212acab6-be3b-0410-9dea-997c60f758d6 --- Examples/Modern UI/StartMenu.nsi | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/Examples/Modern UI/StartMenu.nsi b/Examples/Modern UI/StartMenu.nsi index c63f09e7..6458af18 100644 --- a/Examples/Modern UI/StartMenu.nsi +++ b/Examples/Modern UI/StartMenu.nsi @@ -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