summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--options-table.c2
-rw-r--r--screen-redraw.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c
index bad22bfb..cfb8162e 100644
--- a/options-table.c
+++ b/options-table.c
@@ -965,7 +965,7 @@ const struct options_table_entry options_table[] = {
{ .name = "pane-border-format",
.type = OPTIONS_TABLE_STRING,
- .scope = OPTIONS_TABLE_WINDOW,
+ .scope = OPTIONS_TABLE_WINDOW|OPTIONS_TABLE_PANE,
.default_str = "#{?pane_active,#[reverse],}#{pane_index}#[default] "
"\"#{pane_title}\"",
.text = "Format of text in the pane status lines."
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)