Merge branch 'master' of https://github.com/dankamongmen/kitty
This commit is contained in:
commit
b853fc30c0
2 changed files with 3 additions and 1 deletions
|
|
@ -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]
|
||||
-------------------
|
||||
|
|
|
|||
|
|
@ -955,7 +955,7 @@ def braille(buf: BufType, width: int, height: int, which: int = 0) -> None:
|
|||
|
||||
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
|
||||
|
|
|
|||
Loading…
Reference in a new issue