From 24ca3aed8113070182ad3fc872c2af7ea656263f Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 11 Aug 2018 22:45:53 -0400 Subject: Leave room for topic when creating view --- ui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui.c b/ui.c index 748235c..5f26405 100644 --- a/ui.c +++ b/ui.c @@ -123,7 +123,7 @@ static struct View *viewTag(struct Tag tag) { view->log = newpad(LOG_LINES, COLS); wsetscrreg(view->log, 0, lastLogLine()); scrollok(view->log, true); - wmove(view->log, lastLogLine() - logHeight(view), 0); + wmove(view->log, lastLogLine() - logHeight(view) + 2, 0); view->scroll = LOG_LINES; viewAppend(view); -- cgit 1.4.1