csi: move 'dim' attribute from 'vt' to cell attributes

This commit is contained in:
Daniel Eklöf 2019-07-16 13:25:45 +02:00
parent 6c6543cfeb
commit 770c5e97dd
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 3 additions and 4 deletions

View file

@ -52,6 +52,7 @@ struct rgb { float r, g, b; };
* misses) */
struct attributes {
uint8_t bold:1;
uint8_t dim:1;
uint8_t italic:1;
uint8_t underline:1;
uint8_t strikethrough:1;
@ -134,7 +135,6 @@ struct vt {
} utf8;
struct attributes attrs;
struct attributes saved_attrs;
bool dim;
};
struct kbd {