summaryrefslogtreecommitdiffstats
path: root/screen-redraw.c
diff options
context:
space:
mode:
authornicm <nicm>2021-12-13 09:42:20 +0000
committernicm <nicm>2021-12-13 09:42:20 +0000
commitc6149adf55a1ab108a9336ba15a82bd11a809cb3 (patch)
tree0bbc81f9a418a9f6b0cffc88d5977a226921dd98 /screen-redraw.c
parent9c1633a8659c4045b8303eb99d5f89b4f0dcb784 (diff)
Make pane-border-format a pane option, GitHub issue 2999.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r--screen-redraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c
index 0326c12d..5ef9e64c 100644
--- a/screen-redraw.c
+++ b/screen-redraw.c
@@ -373,7 +373,7 @@ screen_redraw_make_pane_status(struct client *c, struct window_pane *wp,
style_apply(&gc, w->options, "pane-active-border-style", ft);
else
style_apply(&gc, w->options, "pane-border-style", ft);
- fmt = options_get_string(w->options, "pane-border-format");
+ fmt = options_get_string(wp->options, "pane-border-format");
expanded = format_expand_time(ft, fmt);
if (wp->sx < 4)