box-drawing: SEXTANTS, U+1fb00-1fb3b

This commit is contained in:
Daniel Eklöf 2020-12-29 13:02:08 +01:00
parent 00d0e53a95
commit 25d2b03a5c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
3 changed files with 143 additions and 3 deletions

View file

@ -261,7 +261,11 @@ struct terminal {
int font_scale;
enum fcft_subpixel font_subpixel;
struct fcft_glyph *box_drawing[160];
/*
* 0-159: U+250U+259F
* 160-219: U+1FB00-1FB3B
*/
struct fcft_glyph *box_drawing[220];
bool is_sending_paste_data;
ptmx_buffer_list_t ptmx_buffers;