diff options
author | nicm <nicm> | 2021-08-20 17:36:03 +0000 |
---|---|---|
committer | nicm <nicm> | 2021-08-20 17:36:03 +0000 |
commit | 01b13de655cae6cd619bf872d16f82600ff6081e (patch) | |
tree | a49e3bc7797c00236ce294c5c15413c28b345637 | |
parent | f984446d196b5a542cc6935b22c20607b8a07ff3 (diff) | |
download | rtmux-01b13de655cae6cd619bf872d16f82600ff6081e.tar.gz rtmux-01b13de655cae6cd619bf872d16f82600ff6081e.tar.bz2 rtmux-01b13de655cae6cd619bf872d16f82600ff6081e.zip |
Fill colour palette correctly from option for new panes, GitHub issue
2831.
-rw-r--r-- | window.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -924,6 +924,8 @@ window_pane_create(struct window *w, u_int sx, u_int sy, u_int hlimit) wp->pipe_fd = -1; colour_palette_init(&wp->palette); + colour_palette_from_option(&wp->palette, wp->options); + screen_init(&wp->base, sx, sy, hlimit); wp->screen = &wp->base; |