diff options
author | Thomas Adam <thomas@xteddy.org> | 2022-03-16 20:01:10 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2022-03-16 20:01:10 +0000 |
commit | 5d4c3ef762d9073510518c24b40c1d8bf12e0b65 (patch) | |
tree | a446c630e29fcfd4a3c3a6e27699b4300e968980 /options.c | |
parent | ee3f1d25d568a425420cf14ccba6a1b2a012f7dd (diff) | |
parent | e6e737ac0bf9a5be729b5c71f3a582355432d041 (diff) | |
download | rtmux-5d4c3ef762d9073510518c24b40c1d8bf12e0b65.tar.gz rtmux-5d4c3ef762d9073510518c24b40c1d8bf12e0b65.tar.bz2 rtmux-5d4c3ef762d9073510518c24b40c1d8bf12e0b65.zip |
Merge branch 'obsd-master' into master
Diffstat (limited to 'options.c')
-rw-r--r-- | options.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -1108,6 +1108,8 @@ options_push_changes(const char *name) struct window_pane *wp; int c; + log_debug("%s: %s", __func__, name); + if (strcmp(name, "automatic-rename") == 0) { RB_FOREACH(w, windows, &windows) { if (w->active == NULL) @@ -1130,6 +1132,10 @@ options_push_changes(const char *name) &wp->screen->default_mode); } } + if (strcmp(name, "fill-character") == 0) { + RB_FOREACH(w, windows, &windows) + window_set_fill_character(w); + } if (strcmp(name, "key-table") == 0) { TAILQ_FOREACH(loop, &clients, entry) server_client_set_key_table(loop, NULL); |