mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-06-24 18:07:01 +00:00
Forgot to add bi info to sm_faces
This commit is contained in:
parent
b0bee2f1f3
commit
6501ee45b6
1 changed files with 3 additions and 2 deletions
|
|
@ -34,9 +34,10 @@ def create_symbol_map(opts):
|
|||
faces = []
|
||||
for family in val.values():
|
||||
if family not in family_map:
|
||||
o = create_face(font_for_family(family))
|
||||
font = font_for_family(family)
|
||||
o = create_face(font)
|
||||
family_map[family] = len(faces)
|
||||
faces.append(o)
|
||||
faces.append((o, font.bold, font.italic))
|
||||
sm = tuple((a, b, family_map[f]) for (a, b), f in val.items())
|
||||
return sm, tuple(faces)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue