diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-05-16 18:56:53 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-05-16 19:08:38 +0300 |
commit | e9a8a46fc92669236e37dd096f5a849aed74ca6a (patch) | |
tree | dabe2fe49420aebdcaab1c6babf880f13102c073 /packaging/windows | |
parent | 3c77e0831772782a9452ff82e0e87e2e172ce295 (diff) | |
download | plus-e9a8a46fc92669236e37dd096f5a849aed74ca6a.tar.gz plus-e9a8a46fc92669236e37dd096f5a849aed74ca6a.tar.bz2 plus-e9a8a46fc92669236e37dd096f5a849aed74ca6a.tar.xz plus-e9a8a46fc92669236e37dd096f5a849aed74ca6a.zip |
Replaced default theme by classic. Moving default theme to theme mana.
Diffstat (limited to 'packaging/windows')
-rw-r--r-- | packaging/windows/setup.nsi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packaging/windows/setup.nsi b/packaging/windows/setup.nsi index 2ab0d9e14..7ac3649ed 100644 --- a/packaging/windows/setup.nsi +++ b/packaging/windows/setup.nsi @@ -195,6 +195,7 @@ Section "Core files (required)" SecCore CreateDirectory "$INSTDIR\data\themes\blackwood" CreateDirectory "$INSTDIR\data\themes\classic" CreateDirectory "$INSTDIR\data\themes\enchilado" + CreateDirectory "$INSTDIR\data\themes\mana" CreateDirectory "$INSTDIR\data\themes\pink" CreateDirectory "$INSTDIR\data\themes\redandblack" CreateDirectory "$INSTDIR\data\themes\wood" @@ -243,9 +244,8 @@ Section "Core files (required)" SecCore SetOutPath "$INSTDIR\data\themes\blackwood" File "${SRCDIR}\data\themes\blackwood\*.png" File "${SRCDIR}\data\themes\blackwood\*.xml" - SetOutPath "$INSTDIR\data\themes\classic" - File "${SRCDIR}\data\themes\classic\*.png" - File "${SRCDIR}\data\themes\classic\*.xml" + SetOutPath "$INSTDIR\data\themes\mana" + File "${SRCDIR}\data\themes\mana\*.xml" SetOutPath "$INSTDIR\data\themes\enchilado" File "${SRCDIR}\data\themes\enchilado\*.png" File "${SRCDIR}\data\themes\enchilado\*.xml" |