Fix wide glyphs.

This commit is contained in:
Bartek Stalewski 2022-03-31 22:20:36 +02:00
parent 5ddd2f2131
commit 783f503e61
2 changed files with 75 additions and 63 deletions

View file

@ -36,6 +36,12 @@ enum glyph_attribute {
ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
};
enum drawing_mode {
DRAW_NONE = 0,
DRAW_BG = 1 << 0,
DRAW_FG = 1 << 1,
};
enum selection_mode {
SEL_IDLE = 0,
SEL_EMPTY = 1,