summaryrefslogtreecommitdiffstats
path: root/image-sixel.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicholas.marriott@gmail.com>2023-09-01 14:54:27 +0100
committerNicholas Marriott <nicholas.marriott@gmail.com>2023-09-01 14:54:27 +0100
commitd682ef88e6eab4d256adf441d29f8e873ea292da (patch)
tree7ca4fe4c0d3e1717e721fa3ae134d108f6b27911 /image-sixel.c
parent62f657845ef6229b2f1a78fbceb8f3b2a736227e (diff)
Bump width and height to 10000.
Diffstat (limited to 'image-sixel.c')
-rw-r--r--image-sixel.c4
1 files 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;