mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi: fix typo - the '(' was in the wrong place
This commit is contained in:
parent
b7593897b7
commit
08485ce412
1 changed files with 1 additions and 1 deletions
2
csi.c
2
csi.c
|
|
@ -891,7 +891,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
char reply[64];
|
||||
snprintf(reply, sizeof(reply), "\033[9;%d;%dt",
|
||||
it->item->dim.px_real.height / term->cell_height / term->scale,
|
||||
it->item->dim.px_real.width / term->cell_width) / term->scale;
|
||||
it->item->dim.px_real.width / term->cell_width / term->scale);
|
||||
term_to_slave(term, reply, strlen(reply));
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue