diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-06-13 07:56:08 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-13 07:56:08 -0400 |
commit | 222eac739d43c7a380b9a37db91bf61ed8dbc65a (patch) | |
tree | ff9b5466c7b99925a873350cbc8488bbd67950b5 /st.h | |
parent | b6a1f2d3339553e314e9f563b96c38f4859fdd08 (diff) | |
parent | e3b821dcb3511d60341dec35ee05a4a0abfef7f2 (diff) |
Merge pull request #224 from Azumgi/glyph_truncation_fix
Glyph truncation fix
Diffstat (limited to 'st.h')
-rw-r--r-- | st.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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, |