mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 05:49:15 +02:00
TurboPower_ipro: Fix background color of table rows
git-svn-id: trunk@58875 -
This commit is contained in:
parent
6917c13865
commit
d049fe0df4
@ -10937,9 +10937,13 @@ end;
|
||||
procedure TIpHtmlNodeTR.LoadAndApplyCSSProps;
|
||||
begin
|
||||
inherited;
|
||||
if not (FCombinedCSSProps.Alignment in [haDefault, haUnknown]) then
|
||||
Align := FCombinedCSSProps.Alignment;
|
||||
// wp: what about VAlign?
|
||||
if Assigned(FCombinedCSSProps) then begin
|
||||
if not (FCombinedCSSProps.Alignment in [haDefault, haUnknown]) then
|
||||
Align := FCombinedCSSProps.Alignment;
|
||||
if FCombinedCSSProps.BgColor <> -1 then
|
||||
BgColor := FCombinedCSSProps.BGColor;
|
||||
// wp: what about VAlign?
|
||||
end;
|
||||
end;
|
||||
{$ENDIF}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user