This commit is contained in:
Kovid Goyal 2020-11-15 10:13:00 +05:30
commit b853fc30c0
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 1 deletions

View File

@ -10,6 +10,8 @@ To update |kitty|, :doc:`follow the instructions <binary>`.
- Distribute extra pixels among all eight-blocks rather than adding them
all to the last block (:iss:`3097`)
- Fix drawing of a few sextant characters incorrect (:pull:`3105`)
0.19.2 [2020-11-13]
-------------------

View File

@ -955,7 +955,7 @@ for i in range(256):
c = 0x1fb00
for i in range(1, 63):
if i in (20, 40):
if i in (21, 42):
continue
box_chars[chr(c)] = [p(sextant, which=i)]
c += 1