From 6abb62df1e492672a552f89b9188fe3bf0750b5c Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 25 Sep 2018 21:57:14 +0100 Subject: [PATCH] Change the B into a +. --- window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/window.c b/window.c index 3704a633..ed76e7f4 100644 --- a/window.c +++ b/window.c @@ -761,7 +761,7 @@ window_printable_flags(struct winlink *wl, struct client *c) if (wl->window->flags & WINDOW_ZOOMED) flags[pos++] = 'Z'; if (c != NULL && tty_window_bigger(&c->tty, wl->window)) - flags[pos++] = 'B'; + flags[pos++] = '+'; flags[pos] = '\0'; return (flags); }