TurboPower_ipro: Fix background color of table rows

git-svn-id: trunk@58875 -
This commit is contained in:
wp 2018-09-05 18:45:22 +00:00
parent 6917c13865
commit d049fe0df4

View File

@ -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}