mirror of
https://github.com/tmux/tmux.git
synced 2026-05-30 22:26:18 +00:00
Not going to add these options right now.
This commit is contained in:
7
tty.c
7
tty.c
@@ -3080,10 +3080,6 @@ tty_default_colours(struct grid_cell *gc, struct window_pane *wp)
|
||||
/* Window-level baseline. */
|
||||
tty_window_default_style(&wp->cached_active_gc, wp);
|
||||
style_add(&wp->cached_active_gc, wo, "window-active-style", ft);
|
||||
/* Floating pane window default overrides window baseline. */
|
||||
if (wp->flags & PANE_FLOATING)
|
||||
style_add(&wp->cached_active_gc, wo,
|
||||
"floating-pane-style", ft);
|
||||
/* Per-pane override (set via new-pane -s or select-pane -P). */
|
||||
if (options_get_only(wp->options, "window-active-style") != NULL)
|
||||
style_add(&wp->cached_active_gc, wp->options,
|
||||
@@ -3092,9 +3088,6 @@ tty_default_colours(struct grid_cell *gc, struct window_pane *wp)
|
||||
/* Window-level baseline. */
|
||||
tty_window_default_style(&wp->cached_gc, wp);
|
||||
style_add(&wp->cached_gc, wo, "window-style", ft);
|
||||
/* Floating pane window default overrides window baseline. */
|
||||
if (wp->flags & PANE_FLOATING)
|
||||
style_add(&wp->cached_gc, wo, "floating-pane-style", ft);
|
||||
/* Per-pane override (set via new-pane -s or select-pane -P). */
|
||||
if (options_get_only(wp->options, "window-style") != NULL)
|
||||
style_add(&wp->cached_gc, wp->options,
|
||||
|
||||
Reference in New Issue
Block a user