From d2d43987d0f35af2bc012f1260fdb81c851fe390 Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 18 Mar 2019 09:46:42 +0000 Subject: With force, kill previous job before starting new. Fixes problem reported by Scott Mcdermott in GitHub issue 1627. --- status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'status.c') diff --git a/status.c b/status.c index 5a6a4466..4a2eb19d 100644 --- a/status.c +++ b/status.c @@ -704,7 +704,7 @@ status_message_redraw(struct client *c) lines = status_line_size(c); if (lines <= 1) lines = 1; - screen_init(sl->active, c->tty.sx, 1, 0); + screen_init(sl->active, c->tty.sx, lines, 0); len = screen_write_strlen("%s", c->message_string); if (len > c->tty.sx) -- cgit