mirror of
https://github.com/erkin/ponysay.git
synced 2025-02-16 17:44:23 +01:00
Correct widths for most Ambiguous Width characters
This commit is contained in:
parent
42280dbdb5
commit
3f83f43df4
1 changed files with 1 additions and 1 deletions
|
@ -459,7 +459,7 @@ class Backend():
|
||||||
i += 1
|
i += 1
|
||||||
if not UCS.isCombining(c):
|
if not UCS.isCombining(c):
|
||||||
rc += 1
|
rc += 1
|
||||||
if unicodedata.east_asian_width(c) in ('F', 'W', 'A'):
|
if unicodedata.east_asian_width(c) in ('F', 'W'):
|
||||||
rc += 1
|
rc += 1
|
||||||
return rc
|
return rc
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue