From a163eeb2d75d802672236732d1cc5cddf8c7082e Mon Sep 17 00:00:00 2001 From: nick black Date: Mon, 14 Jun 2021 03:07:25 -0400 Subject: [PATCH] until #1726 is fixed, no quadrants in linux console --- src/lib/termdesc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib/termdesc.c b/src/lib/termdesc.c index 9c79588fb..7085d1e72 100644 --- a/src/lib/termdesc.c +++ b/src/lib/termdesc.c @@ -136,7 +136,8 @@ apply_term_heuristics(tinfo* ti, const char* termname, int fd){ ti->braille = false; // no braille, no sextants in linux console // FIXME if the NCOPTION_NO_FONT_CHANGES, this isn't true // FIXME we probably want to do this based off ioctl()s in linux.c - ti->quadrants = true; // we program quadrants on the console + // FIXME until #1726 is fixed this definitely is not happening + ti->quadrants = false; // we program quadrants on the console } // run a wcwidth(⣿) to guarantee libc Unicode 3 support, independent of term if(wcwidth(L'⣿') < 0){