mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 19:20:38 +02:00
LCL, TextStyle.SingleLine default value changed
git-svn-id: trunk@11378 -
This commit is contained in:
parent
c6dcb9b771
commit
898fa2da1f
@ -1021,9 +1021,9 @@ begin
|
||||
tlBottom : Options := Options or DT_BOTTOM;
|
||||
end;
|
||||
If Style.WordBreak then
|
||||
Options := Options or DT_WORDBREAK
|
||||
else
|
||||
If Style.SingleLine then
|
||||
Options := Options or DT_WORDBREAK;
|
||||
|
||||
If Style.SingleLine then
|
||||
Options := Options or DT_SINGLELINE;
|
||||
|
||||
If not Style.Clipping then
|
||||
@ -1352,7 +1352,7 @@ begin
|
||||
Alignment := taLeftJustify;
|
||||
Layout := tlTop;
|
||||
WordBreak := True;
|
||||
SingleLine := False;
|
||||
SingleLine := True;
|
||||
Clipping := True;
|
||||
ShowPrefix := False;
|
||||
Opaque := False;
|
||||
|
Loading…
Reference in New Issue
Block a user