mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-03-13 05:33:51 -04:00
csi: add ‘28’ (rectangular edit) to primary DA response
This commit is contained in:
parent
926d88fd30
commit
95293f142a
1 changed files with 2 additions and 2 deletions
4
csi.c
4
csi.c
|
|
@ -743,10 +743,10 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
||||||
* Note: tertiary DA responds with "FOOT".
|
* Note: tertiary DA responds with "FOOT".
|
||||||
*/
|
*/
|
||||||
if (term->conf->tweak.sixel) {
|
if (term->conf->tweak.sixel) {
|
||||||
static const char reply[] = "\033[?62;4;22c";
|
static const char reply[] = "\033[?62;4;22;28c";
|
||||||
term_to_slave(term, reply, sizeof(reply) - 1);
|
term_to_slave(term, reply, sizeof(reply) - 1);
|
||||||
} else {
|
} else {
|
||||||
static const char reply[] = "\033[?62;22c";
|
static const char reply[] = "\033[?62;22;28c";
|
||||||
term_to_slave(term, reply, sizeof(reply) - 1);
|
term_to_slave(term, reply, sizeof(reply) - 1);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue