diff --git a/docs/changelog.rst b/docs/changelog.rst index ed4e0e67e..cd52b56d5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -10,6 +10,8 @@ To update |kitty|, :doc:`follow the instructions `. - 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] ------------------- diff --git a/kitty/fonts/box_drawing.py b/kitty/fonts/box_drawing.py index 00cdbd30a..5393dba74 100644 --- a/kitty/fonts/box_drawing.py +++ b/kitty/fonts/box_drawing.py @@ -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