csi: add ‘28’ (rectangular edit) to primary DA response

This commit is contained in:
Daniel Eklöf 2021-12-26 15:03:55 +01:00
parent 926d88fd30
commit 95293f142a
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
csi.c
View file

@ -743,10 +743,10 @@ csi_dispatch(struct terminal *term, uint8_t final)
* Note: tertiary DA responds with "FOOT".
*/
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);
} else {
static const char reply[] = "\033[?62;22c";
static const char reply[] = "\033[?62;22;28c";
term_to_slave(term, reply, sizeof(reply) - 1);
}
break;