diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-09-26 16:42:29 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2018-09-26 16:42:29 +0100 |
commit | 04c6db2d0f7bca4bc6b31afd5a5cb4512b5f915b (patch) | |
tree | c3e4ea877e549018ab5205fd431c2b48f35435c7 /window.c | |
parent | 6abb62df1e492672a552f89b9188fe3bf0750b5c (diff) | |
download | rtmux-04c6db2d0f7bca4bc6b31afd5a5cb4512b5f915b.tar.gz rtmux-04c6db2d0f7bca4bc6b31afd5a5cb4512b5f915b.tar.bz2 rtmux-04c6db2d0f7bca4bc6b31afd5a5cb4512b5f915b.zip |
Revert "Add a B flag to mark windows bigger than the client."
This reverts commit b4e74f4310d90affd4e1a4a7328082ac4beb5461.
Diffstat (limited to 'window.c')
-rw-r--r-- | window.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -739,7 +739,7 @@ window_destroy_panes(struct window *w) } const char * -window_printable_flags(struct winlink *wl, struct client *c) +window_printable_flags(struct winlink *wl) { struct session *s = wl->session; static char flags[32]; @@ -760,8 +760,6 @@ window_printable_flags(struct winlink *wl, struct client *c) flags[pos++] = 'M'; if (wl->window->flags & WINDOW_ZOOMED) flags[pos++] = 'Z'; - if (c != NULL && tty_window_bigger(&c->tty, wl->window)) - flags[pos++] = '+'; flags[pos] = '\0'; return (flags); } |