Skip to content
⌘ NSIS Forum Archive

Problem with MUI_UI_COMPONENTSPAGE_NODESC

5 posts

RoMZERO#

Problem with MUI_UI_COMPONENTSPAGE_NODESC

Hi, i use this

!define MUI_UI_COMPONENTSPAGE_SMALLDESC

but don't work

why ?

tnx for help
deguix#
Depends on where you put this define. You have to put it anywhere before !insertmacro MUI_LANGUAGE.
RoMZERO#
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"
deguix#
That's not for enabling the "small description" mode of components page. Use !define MUI_COMPONENTSPAGE_SMALLDESC instead.