summaryrefslogtreecommitdiffstats
path: root/screen-redraw.c
diff options
context:
space:
mode:
authornicm <nicm>2020-06-27 10:23:10 +0000
committernicm <nicm>2020-06-27 10:23:10 +0000
commitb6aeb86c20abca3b88722da15747755f8a7690f7 (patch)
tree00a95c5c2a48e9e55310519c4fe86c24f534dde5 /screen-redraw.c
parent74df7071adf5e721b15c15e9e07c86d1deb86def (diff)
Check for no pane border status line separately from top/bottom.
Diffstat (limited to 'screen-redraw.c')
-rw-r--r--screen-redraw.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/screen-redraw.c b/screen-redraw.c
index 258c2fd2..3391a891 100644
--- a/screen-redraw.c
+++ b/screen-redraw.c
@@ -271,13 +271,19 @@ screen_redraw_type_of_cell(struct client *c, u_int px, u_int py,
borders |= 2;
if (screen_redraw_cell_border(c, px, py + 1, pane_status))
borders |= 1;
- } else {
+ } else if (pane_status == PANE_STATUS_BOTTOM) {
if (py == 0 ||
screen_redraw_cell_border(c, px, py - 1, pane_status))
borders |= 2;
if (py != sy - 1 &&
screen_redraw_cell_border(c, px, py + 1, pane_status))
borders |= 1;
+ } else {
+ if (py == 0 ||
+ screen_redraw_cell_border(c, px, py - 1, pane_status))
+ borders |= 2;
+ if (screen_redraw_cell_border(c, px, py + 1, pane_status))
+ borders |= 1;
}
/*