From a0c8a46c750ff166c7a53a28c2bf04e04575c497 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 2 Sep 2020 15:57:36 -0400 Subject: Fix inserting blank lines BEFORE the new message --- ui.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'ui.c') diff --git a/ui.c b/ui.c index 9e86000..18af635 100644 --- a/ui.c +++ b/ui.c @@ -520,10 +520,12 @@ static void notify(uint id, const char *str) { void uiWrite(uint id, enum Heat heat, const time_t *src, const char *str) { struct Window *window = windows.ptrs[windowFor(id)]; time_t ts = (src ? *src : time(NULL)); + if (heat < Cold && window->ignore) { + bufferPush(window->buffer, COLS, heat, ts, str); + return; + } - int lines = bufferPush(window->buffer, COLS, heat, ts, str); - if (heat < Cold && window->ignore) return; - + int lines = 0; if (!window->unreadSoft++) window->unreadHard = 0; if (window->mark && heat > Cold) { if (!window->unreadWarm++) { @@ -532,6 +534,7 @@ void uiWrite(uint id, enum Heat heat, const time_t *src, const char *str) { if (heat > window->heat) window->heat = heat; statusUpdate(); } + lines += bufferPush(window->buffer, COLS, heat, ts, str); window->unreadHard += lines; if (window->scroll) windowScroll(window, lines); if (window == windows.ptrs[windows.show]) windowUpdate(); -- cgit 1.4.1