mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 20:38:08 +02:00
TTaskDialog: Win32WS: handle '\n' in caption of (radio)buttons (for backwards compatibility).
This commit is contained in:
parent
1729b47bbe
commit
15989485bf
@ -1720,7 +1720,7 @@ var
|
||||
SetLength(ButtonCaptions,RUCount+16);
|
||||
SetLength(Buttons,RUCount+16);
|
||||
end;
|
||||
ButtonCaptions[RUCount] := Utf8ToUtf16(List[i]);//GetNextStringLineToWS(P);
|
||||
ButtonCaptions[RUCount] := Utf8ToUtf16(StringReplace(List[i],'\n',#10,[rfReplaceAll]));
|
||||
Buttons[RUCount].nButtonID := n+firstID;
|
||||
Buttons[RUCount].pszButtonText := PWideChar(ButtonCaptions[RUCount]);
|
||||
inc(n);
|
||||
|
Loading…
Reference in New Issue
Block a user