Skip to content
⌘ NSIS Forum Archive

Regression: MUI_UNPAGE_TITLE_3LINES

6 posts

dani254#

Regression: MUI_UNPAGE_TITLE_3LINES

worked in 2.0, does not in 2.04
MUI_WELCOMEPAGE_TITLE_3LINES is still Ok.
Is MUI_UNPAGE_TITLE_3LINES depricated?

kind regards
kichik#
MUI_UNPAGE_TITLE_3LINES was deprecated before 2.0 (2.0 mui readme) was released. You probably kept it in your script by mistake since the beta versions.
dani254#
so what do to now?
If the application name needs MUI_WELCOMEPAGE_TITLE_3LINES it will defenitely need MUI_UNPAGE_TITLE_3LINES.
any workaround?

kind regards
scully13#
I'm running 2.0 but found that if you put MUI_WELCOMEPAGE_TITLE_3LINES or MUI_FINISHPAGE_TITLE_3LINES right before the MUI_UNPAGE_WELCOME or MUI_UNPAGE_FINISH it worked fine. Don't know if that's right or not but it works.

i.e.
!define MUI_FINISHPAGE_TITLE_3LINES
!insertmacro MUI_PAGE_FINISH

!define MUI_FINISHPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_FINISH
kichik#
scully13 has the correct solution. As specified in the Modern UI readme:
Note: There is no difference between installer and uninstaller page settings.
dani254#
oops, now its working
what i looked for was

!define MUI_WELCOMEPAGE_TITLE_3LINES
!insertmacro MUI_UNPAGE_WELCOME

Thank you very much.