diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-05-30 12:01:13 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-05-30 12:01:13 +0100 |
commit | c7a0f56c71109496a30b7f3463b717a6f0aca1ff (patch) | |
tree | 737211a91583900dfecdadf48657e08caa92ec63 /cmd-set-option.c | |
parent | 5e9412608ecae6fde3b68577397dbc07e6f2b4ac (diff) | |
parent | 1921fac814b98607031d975b69c6293a6227e274 (diff) | |
download | rtmux-c7a0f56c71109496a30b7f3463b717a6f0aca1ff.tar.gz rtmux-c7a0f56c71109496a30b7f3463b717a6f0aca1ff.tar.bz2 rtmux-c7a0f56c71109496a30b7f3463b717a6f0aca1ff.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index 6fc6c8ba..356668ee 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -200,6 +200,11 @@ cmd_set_option_exec(struct cmd *self, struct cmd_q *cmdq) status_timer_start_all(); if (strcmp(oe->name, "monitor-silence") == 0) alerts_reset_all(); + if (strcmp(oe->name, "window-style") == 0 || + strcmp(oe->name, "window-active-style") == 0) { + RB_FOREACH(w, windows, &windows) + w->flags |= WINDOW_STYLECHANGED; + } /* When the pane-border-status option has been changed, resize panes. */ if (strcmp(oe->name, "pane-border-status") == 0) { |