this patch is a response to feature request #1495949:
http://sourceforge.net/tracker/index.php?func=detail&aid=1495949&group_id=22049&atid=373088
it adds linebreak support to link controls by making the MULTILINE flag available for them.
so, if you want to have multiple lines in a single link, you'll have to use:
[Field x]
Type=Link
...
Flags=MULTILINE
Text=this is a \r\n linebreak in \r\n a link control!
patch notes:
* this will break backwards compatibility regarding the usage of backslashes in link texts! you'll have to escape backslashes in links now.
* patch is against nsis cvs from march 18, 2007
* patch affects installeroptions.cpp
* patch does not include tests, examples or documentation updates
patch for installeroptions.cpp
Logged In: YES
user_id=584402
Originator: NO
Thanks, applied. I've removed the test for MULTILINE flag because it breaks compatibility anyway and it's only logical for links to act as labels.
Logged In: YES
user_id=970495
Originator: YES
so links work with linebreaks without using the MULTILINE flag?