Skip to content
⌘ NSIS Forum Archive

Component's Page Style

6 posts

DropF#edited

Component's Page Style

Hello,

when I install NSIS, I see a component's page like that:



But when I compile my project, i have a component's page like this one:



Both don't have the same tree view and description style. How can I get the same component's page of NSIS' installer? I know I can edit the modern.exe file with ResHack (by changing dialog No.104), but I would like to do it in a "proper" way.

Thx (sorry for my bad English, because I'm French 😉)
Joost Verburg#
Check the Modern UI Readme 😁

!define MUI_COMPONENTSPAGE_SMALLDESC

before the MUI_LANGUAGE macro's
DropF#
Thank you, it works!
But I don't understand anything: yesterday I tried this command and it didn't work... maybe I pulled it after the language macro 😛

Thank you.
Joel#
also depends for how many sections and subsection you have:


SubSection

Section "Section 1"
;Hello dude
SectionEnd

SubSection

Section "Section 2"
;Hello again
SectionEnd

Section "Section 3"
;Me again
SectionEnd

SubSectionEnd

Section "Section 4"
;I finish
SectionEnd

SubSectionEnd