diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-09-25 21:57:14 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-09-25 21:57:29 +0100 |
commit | 6abb62df1e492672a552f89b9188fe3bf0750b5c (patch) | |
tree | e23ff265b19c30ba0b065cd979c9e254959d4f80 | |
parent | 7cf00d6b7206bcf75c626551bd2c008c2df2e387 (diff) | |
download | rtmux-6abb62df1e492672a552f89b9188fe3bf0750b5c.tar.gz rtmux-6abb62df1e492672a552f89b9188fe3bf0750b5c.tar.bz2 rtmux-6abb62df1e492672a552f89b9188fe3bf0750b5c.zip |
Change the B into a +.
-rw-r--r-- | window.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |