mirror of
https://github.com/tmux/tmux.git
synced 2025-12-23 08:26:26 +00:00
Set a PANE_STYLECHANGED flag for when a style update has to be sent.
This commit is contained in:
@@ -1165,7 +1165,7 @@ options_push_changes(const char *name)
|
||||
if (strcmp(name, "window-style") == 0 ||
|
||||
strcmp(name, "window-active-style") == 0) {
|
||||
RB_FOREACH(wp, window_pane_tree, &all_window_panes)
|
||||
wp->flags |= PANE_STYLECHANGED;
|
||||
wp->flags |= (PANE_STYLECHANGED|PANE_THEMECHANGED);
|
||||
}
|
||||
if (strcmp(name, "pane-colours") == 0) {
|
||||
RB_FOREACH(wp, window_pane_tree, &all_window_panes)
|
||||
|
||||
Reference in New Issue
Block a user