Archive: A bug in !define MUI_TEXT_WELCOME_INFO_TEXT ?


A bug in !define MUI_TEXT_WELCOME_INFO_TEXT ?
Hi,

The !define MUI_TEXT_WELCOME_INFO_TEXT command doesn't support newlines. Here my code:

!define MUI_TEXT_WELCOME_INFO_TEXT "Line 1$\nLine 2"
But it only displays "Line 1".
I thought I made an error, but I tried the same string with the command !define MUI_INNERTEXT_DIRECTORY_TOP, and it worked very well. So I suppose it is a bug.

Thanx (sorry for my bad English, I'm French :-P)

It's an InstallOptions dialog. Use \r\n


Thank you :)
(I use only \n and not \r\n, and it works too)


\r\n is the standard Windows line break, so I think it's better to use that one.


ok ;)