In my installer script I have defined some sections where the user can choose from which to install:
This works fine but with the MUI2 I have an empty area right beside my section-checkboxes. Since this seems to be usabel for some additional description about the different install sections/options: how can I add some additional information text to my sections so that it is shown there?
Section "Multiple language support" SEC_LANGUAGES
SectionIn 4
SetOutPath "$INSTDIR\translations\"
File /r "..\translations\common_*.lang"
SetOutPath "$INSTDIR\"
SectionEnd
Thanks!