render: apply a dimmed overlay while in Unicode input mode

This commit is contained in:
Daniel Eklöf 2022-08-08 16:31:28 +02:00
parent a36848a4ad
commit e249b52abd
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 36 additions and 8 deletions

View file

@ -289,9 +289,10 @@ enum term_surface {
};
enum overlay_style {
OVERLAY_NONE = 0,
OVERLAY_SEARCH = 1,
OVERLAY_FLASH = 2,
OVERLAY_NONE,
OVERLAY_SEARCH,
OVERLAY_FLASH,
OVERLAY_UNICODE_MODE,
};
typedef tll(struct ptmx_buffer) ptmx_buffer_list_t;