FPSpreadsheet: Fix incorrect underlining of text by xlsx reader.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9482 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
parent
46a0ee0a50
commit
c163481ff7
@ -1016,7 +1016,7 @@ begin
|
||||
AFont.Style := AFont.Style + [fssItalic];
|
||||
|
||||
s := GetAttrValue(ANode, 'u');
|
||||
if not ((s = '') or (s = '0')) then
|
||||
if not ((s = '') or (s = '0') or (s = 'none')) then
|
||||
AFont.Style := AFont.Style + [fssUnderline];
|
||||
|
||||
s := GetAttrValue(ANode, 'strike');
|
||||
|
Loading…
Reference in New Issue
Block a user