From e3b821dcb3511d60341dec35ee05a4a0abfef7f2 Mon Sep 17 00:00:00 2001 From: Dreomite Date: Sat, 13 Jun 2020 02:29:41 +0300 Subject: Fix wide glyphs truncation --- st.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'st.h') diff --git a/st.h b/st.h index 33cc5d4..b85474b 100644 --- a/st.h +++ b/st.h @@ -37,6 +37,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, -- cgit v1.2.3