summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--status.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/status.c b/status.c
index 9886eebb..fffdb327 100644
--- a/status.c
+++ b/status.c
@@ -659,9 +659,10 @@ status_message_redraw(struct client *c)
memcpy(&old_status, &c->status, sizeof old_status);
lines = status_line_size(c->session);
- if (lines <= 1)
+ if (lines <= 1) {
+ lines = 1;
screen_init(&c->status, c->tty.sx, 1, 0);
- else
+ } else
screen_init(&c->status, c->tty.sx, lines, 0);
len = screen_write_strlen("%s", c->message_string);
@@ -811,9 +812,10 @@ status_prompt_redraw(struct client *c)
memcpy(&old_status, &c->status, sizeof old_status);
lines = status_line_size(c->session);
- if (lines <= 1)
+ if (lines <= 1) {
+ lines = 1;
screen_init(&c->status, c->tty.sx, 1, 0);
- else
+ } else
screen_init(&c->status, c->tty.sx, lines, 0);
len = screen_write_strlen("%s", c->prompt_string);