mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-29 07:58:01 -04:00
csi: implement reverse video
This commit is contained in:
parent
c76e620d71
commit
b26e03fced
3 changed files with 18 additions and 8 deletions
6
csi.c
6
csi.c
|
|
@ -577,7 +577,8 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
|
||||
case 5:
|
||||
LOG_WARN("unimplemented: flash");
|
||||
term->reverse = true;
|
||||
term_damage_all(term);
|
||||
break;
|
||||
|
||||
case 7:
|
||||
|
|
@ -655,7 +656,8 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
break;
|
||||
|
||||
case 5:
|
||||
LOG_WARN("unimplemented: flash");
|
||||
term->reverse = false;
|
||||
term_damage_all(term);
|
||||
break;
|
||||
|
||||
case 7:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue