summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortopcat001 <anindya49@hotmail.com>2023-08-20 16:09:51 -0700
committertopcat001 <anindya49@hotmail.com>2023-08-20 16:09:51 -0700
commit6ebc3feb4671d9b25b3db99d3c16b2323b8e3d02 (patch)
treed40ebbc8c8cec92b44288c196dcef7c62dd7a25c
parent6f013fce39602c259a5be2d690d548c73e51cccc (diff)
Remove redundant {}.sixel
-rw-r--r--input.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/input.c b/input.c
index d902149f..46f8660b 100644
--- a/input.c
+++ b/input.c
@@ -2262,9 +2262,8 @@ input_dcs_dispatch(struct input_ctx *ictx)
#ifdef ENABLE_SIXEL
if (buf[0] == 'q') {
si = sixel_parse(buf, len, w->xpixel, w->ypixel);
- if (si != NULL) {
+ if (si != NULL)
screen_write_sixelimage(sctx, si, ictx->cell.cell.bg);
- }
}
#endif