Fix merge error, from Jakub Łukasiewicz.

pull/3665/head^2
Nicholas Marriott 2023-08-26 20:57:44 +01:00
parent a9841a6d1e
commit 62f657845e
1 changed files with 1 additions and 1 deletions

View File

@ -2259,6 +2259,7 @@ input_dcs_dispatch(struct input_ctx *ictx)
if (ictx->flags & INPUT_DISCARD) {
log_debug("%s: %zu bytes (discard)", __func__, len);
return (0);
}
#ifdef ENABLE_SIXEL
if (buf[0] == 'q') {
si = sixel_parse(buf, len, w->xpixel, w->ypixel);
@ -2266,7 +2267,6 @@ input_dcs_dispatch(struct input_ctx *ictx)
screen_write_sixelimage(sctx, si, ictx->cell.cell.bg);
}
#endif
}
allow_passthrough = options_get_number(wp->options, "allow-passthrough");
if (!allow_passthrough)