jquast / blessed

Blessed is an easy, practical library for making python terminal apps

Home Page:http://pypi.python.org/pypi/blessed

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

24-bit colors are not measured correctly

jquast opened this issue · comments

The printable width of 24-bit colors is not correctly determined,

In [9]: print(t.center(t.bold_yellow('hi')))
                                                  hi

In [10]: print(t.center(t.bold_olivedrab4('hi')))
                                         hi

Working on the fix, and found #139

This should be good now. Please confirm.

it is, thanks for all your help.