diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-29 08:55:21 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-04-29 08:55:21 +0100 |
commit | 3d7674816127332e456b0a82cf53dce82a591a3f (patch) | |
tree | 36b583376afb002b90ffe953c7ae3b8d341cbfcb /names.c | |
parent | 2d151d8ca53a3fbc07441e6d691fb13a2aec2ee3 (diff) | |
download | rtmux-3d7674816127332e456b0a82cf53dce82a591a3f.tar.gz rtmux-3d7674816127332e456b0a82cf53dce82a591a3f.tar.bz2 rtmux-3d7674816127332e456b0a82cf53dce82a591a3f.zip |
Need to redraw borders now when some things change. Also change default so that
the active border colour is different in a mode or with synchronize-panes on.
Diffstat (limited to 'names.c')
-rw-r--r-- | names.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -96,6 +96,7 @@ check_window_name(struct window *w) if (strcmp(name, w->name) != 0) { log_debug("@%u new name %s (was %s)", w->id, name, w->name); window_set_name(w, name); + server_redraw_window_borders(w); server_status_window(w); } else log_debug("@%u name not changed (still %s)", w->id, w->name); |