FPSpreadsheet: Fix reader to detect underlined font in xlsx charts.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9479 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
241004072c
commit
f41595301d
@ -1015,7 +1015,8 @@ begin
|
||||
if GetAttrValue(ANode, 'i') = '1' then
|
||||
AFont.Style := AFont.Style + [fssItalic];
|
||||
|
||||
if GetAttrValue(ANode, 'u') = '1' then
|
||||
s := GetAttrValue(ANode, 'u');
|
||||
if not ((s = '') or (s = '0')) then
|
||||
AFont.Style := AFont.Style + [fssUnderline];
|
||||
|
||||
s := GetAttrValue(ANode, 'strike');
|
||||
|
Loading…
Reference in New Issue
Block a user