Open GoogleCodeExporter opened 9 years ago
Thanks for spotting this issue.
Original comment by OrphanCat
on 27 Mar 2014 at 7:19
I have found the following about this issue:
when a link is style="color: red" then this line in TProperties.Combine inner
function Merge continues.
if (Props[Index] <> Unassigned) and not VarIsIntNull(Props[Index]) then
continue;
Whereas when it is style="color: black" then the line does not continue and so
the default color is assigned.
I am sure it is because 0 is varEmpty which is equal to Unassigned.
I do not know the solution to this at the moment, as I am not sure how you note
that it has been assigned by the attribute to be 0.
But if you put this code in it works:
if (VarIsNumeric(Props[Index]) and (Props[Index] = varEmpty)) OR
((Props[Index] <> Unassigned) and not VarIsIntNull(Props[Index])) then
continue;
However, I do not know what side-effects this will have
Original comment by martin.s...@gmail.com
on 25 Apr 2014 at 1:05
Original issue reported on code.google.com by
alr888...@gmail.com
on 27 Mar 2014 at 11:54Attachments: