From 58f650f0c1c0740ae7540dfe22b9aa897832e02d Mon Sep 17 00:00:00 2001 From: nick black Date: Sat, 25 Sep 2021 22:47:29 -0400 Subject: [PATCH] drop mlterm inversion for DECSDM --- src/lib/termdesc.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib/termdesc.c b/src/lib/termdesc.c index a23fde1f9..dbd3dc954 100644 --- a/src/lib/termdesc.c +++ b/src/lib/termdesc.c @@ -48,7 +48,6 @@ get_default_geometry(tinfo* ti){ // the meaning (*disabling* it with \e[80l)j static inline void setup_sixel_bitmaps(tinfo* ti, int fd, bool invert80){ -fprintf(stderr, "INVERT80: %u\n", invert80); if(invert80){ ti->pixel_init = sixel_init_inverted; }else{ @@ -577,11 +576,6 @@ apply_term_heuristics(tinfo* ti, const char* termname, queried_terminals_e qterm }else if(qterm == TERMINAL_MLTERM){ termname = "MLterm"; ti->caps.quadrants = true; // good caps.quadrants, no caps.sextants as of 3.9.0 - // MLterm 3.9.1 brings it into line with other terminals, and we - // stop inverting the meaning / applying the cursor hack for 3.9.1+. - if(compare_versions(ti->termversion, "3.9.1") < 0){ - *invertsixel = true; - } }else if(qterm == TERMINAL_WEZTERM){ termname = "WezTerm"; ti->caps.rgb = true;