Archive: Problem with MUI_UI_COMPONENTSPAGE_NODESC


Problem with MUI_UI_COMPONENTSPAGE_NODESC
Hi, i use this

!define MUI_UI_COMPONENTSPAGE_SMALLDESC

but don't work

why ?

tnx for help


Depends on where you put this define. You have to put it anywhere before !insertmacro MUI_LANGUAGE.


this is the script

;--------------------------------
;Interface Settings

!define MUI_ABORTWARNING
!define MUI_UI_COMPONENTSPAGE_SMALLDESC

;--------------------------------
;Pages

!insertmacro MUI_PAGE_COMPONENTS
!insertmacro MUI_PAGE_DIRECTORY
!insertmacro MUI_PAGE_INSTFILES

;--------------------------------
;Languages

!insertmacro MUI_LANGUAGE "English"


That's not for enabling the "small description" mode of components page. Use !define MUI_COMPONENTSPAGE_SMALLDESC instead.


lol, stupid error :D

tnx for all