From d682ef88e6eab4d256adf441d29f8e873ea292da Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Fri, 1 Sep 2023 14:54:27 +0100 Subject: [PATCH] Bump width and height to 10000. --- image-sixel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image-sixel.c b/image-sixel.c index 799f8261..41170ec0 100644 --- a/image-sixel.c +++ b/image-sixel.c @@ -24,8 +24,8 @@ #include "tmux.h" #define SIXEL_COLOUR_REGISTERS 1024 -#define SIXEL_WIDTH_LIMIT 2016 -#define SIXEL_HEIGHT_LIMIT 2016 +#define SIXEL_WIDTH_LIMIT 10000 +#define SIXEL_HEIGHT_LIMIT 10000 struct sixel_line { u_int x;