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:
wp_xxyyzz 2024-10-11 12:50:30 +00:00
parent 46a0ee0a50
commit c163481ff7

View File

@ -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');