Change the B into a +.

pull/1495/head
Nicholas Marriott 2018-09-25 21:57:14 +01:00
parent 7cf00d6b72
commit 6abb62df1e
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}