From d81a5c630f53e2513feb29815c03f4c90435e450 Mon Sep 17 00:00:00 2001 From: nicm Date: Tue, 15 Nov 2016 14:08:27 +0000 Subject: [PATCH] And of course I just find a bug, disable previous for now. --- tty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tty.c b/tty.c index fb7b6f8c..a2a3ec42 100644 --- a/tty.c +++ b/tty.c @@ -73,7 +73,7 @@ static void tty_default_attributes(struct tty *, const struct window_pane *, #define tty_use_acs(tty) \ (tty_term_has((tty)->term, TTYC_ACSC) && !((tty)->flags & TTY_UTF8)) #define tty_use_margin(tty) \ - ((tty)->term_type == TTY_VT420) + (0 && (tty)->term_type == TTY_VT420) #define tty_pane_full_width(tty, ctx) \ ((ctx)->xoff == 0 && screen_size_x((ctx)->wp->screen) >= (tty)->sx)