fpvectorial: svg: Adds numbers as bold too

git-svn-id: trunk@44396 -
This commit is contained in:
sekelsenmat 2014-03-10 09:58:48 +00:00
parent bfe8c53b66
commit bbcdb509b3

View File

@ -959,7 +959,7 @@ begin
else if AKey = 'font-weight' then else if AKey = 'font-weight' then
begin begin
case lLowerValue of case lLowerValue of
'bold': ADestEntity.Font.Bold := True; 'bold', '700', '800', '900': ADestEntity.Font.Bold := True;
end; end;
end end
// Other text attributes, non-font ones // Other text attributes, non-font ones
@ -1009,7 +1009,7 @@ begin
else if AKey = 'font-weight' then else if AKey = 'font-weight' then
begin begin
case lLowerValue of case lLowerValue of
'bold': ADest.Font.Bold := True; 'bold', '700', '800', '900': ADest.Font.Bold := True;
else else
ADest.Font.Bold := False; ADest.Font.Bold := False;
end; end;