mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-09-04 18:00:24 +02:00
fpvectorial: svg: Adds numbers as bold too
git-svn-id: trunk@44396 -
This commit is contained in:
parent
bfe8c53b66
commit
bbcdb509b3
@ -959,7 +959,7 @@ begin
|
||||
else if AKey = 'font-weight' then
|
||||
begin
|
||||
case lLowerValue of
|
||||
'bold': ADestEntity.Font.Bold := True;
|
||||
'bold', '700', '800', '900': ADestEntity.Font.Bold := True;
|
||||
end;
|
||||
end
|
||||
// Other text attributes, non-font ones
|
||||
@ -1009,7 +1009,7 @@ begin
|
||||
else if AKey = 'font-weight' then
|
||||
begin
|
||||
case lLowerValue of
|
||||
'bold': ADest.Font.Bold := True;
|
||||
'bold', '700', '800', '900': ADest.Font.Bold := True;
|
||||
else
|
||||
ADest.Font.Bold := False;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user