...
This commit is contained in:
parent
62a4512816
commit
5b3ce2e148
1 changed files with 3 additions and 1 deletions
|
|
@ -268,7 +268,9 @@ def dl(f, *a):
|
|||
f(second, pos, underline_thickness)
|
||||
|
||||
if underline:
|
||||
t = min(cell_height - underline_position - 1, underline_thickness)
|
||||
t = underline_thickness
|
||||
if underline == 2:
|
||||
t = min(cell_height - underline_position - 1, t)
|
||||
dl(add_curl if underline == 2 else add_line, underline_position, t)
|
||||
if strikeout:
|
||||
pos = int(0.65 * baseline)
|
||||
|
|
|
|||
Loading…
Reference in a new issue