Archive: MUI_COMPONENTSPAGE_SMALLDESC does not work


MUI_COMPONENTSPAGE_SMALLDESC does not work
!insertmacro MUI_PAGE_COMPONENTS
!define MUI_COMPONENTSPAGE_SMALLDESC

that information is displayed right the menu - not beyond.

nsis_12_Jan_2004_08_44


the define must be set BEFORE the page-macro !!!!
maybe that's the reason or the other bugs u posted too!


It's an interface setting, so you should set it before ALL pages.


now it works...

;--------------------------------
;Modern UI Configuration

!define MUI_HEADERBITMAP "becky.bmp"
!define MUI_WELCOMEPAGE_TITLE_3LINES
!define MUI_COMPONENTSPAGE_SMALLDESC

!insertmacro MUI_PAGE_WELCOME

Page license "" "showLicense" "leaveLicense"
Page license "" "showLicense1" "leaveLicense"

Page custom insertpath

!insertmacro MUI_PAGE_COMPONENTS

!insertmacro MUI_PAGE_INSTFILES

!define MUI_FINISHPAGE_SHOWREADME "$INSTDIR\Becky!_PlugIns.txt"
!define MUI_FINISHPAGE_SHOWREADME_NOTCHECKED
!insertmacro MUI_PAGE_FINISH

!define MUI_ABORTWARNING

!insertmacro MUI_UNPAGE_CONFIRM
!insertmacro MUI_UNPAGE_INSTFILES



thx Joost - sometimes man do not see the tree within the woods ;)