From 0968a8ac7c5342978fced88af6a897d9b5cdc6ab Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 2 Sep 2020 21:29:03 -0400 Subject: Recalculate unreadHard on reflow --- ui.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'ui.c') diff --git a/ui.c b/ui.c index ab557d3..333ef53 100644 --- a/ui.c +++ b/ui.c @@ -542,6 +542,7 @@ void uiWrite(uint id, enum Heat heat, const time_t *src, const char *str) { } if (window->mark && heat > Cold) { if (!window->unreadWarm++) { + window->unreadSoft++; lines += bufferPush(window->buffer, COLS, false, Cold, ts, ""); } if (heat > window->heat) window->heat = heat; @@ -576,7 +577,9 @@ static void resize(void) { wresize(main, MAIN_LINES, COLS); for (uint num = 0; num < windows.len; ++num) { struct Window *window = windows.ptrs[num]; - bufferReflow(window->buffer, COLS, window->ignore); + window->unreadHard = bufferReflow( + window->buffer, COLS, window->ignore, window->unreadSoft + ); } windowUpdate(); } @@ -753,7 +756,9 @@ void uiCloseNum(uint num) { static void toggleIgnore(struct Window *window) { window->ignore ^= true; - bufferReflow(window->buffer, COLS, window->ignore); + window->unreadHard = bufferReflow( + window->buffer, COLS, window->ignore, window->unreadSoft + ); windowUpdate(); statusUpdate(); } @@ -1015,6 +1020,9 @@ void uiLoad(const char *name) { readString(file, &buf, &cap); bufferPush(window->buffer, COLS, window->ignore, heat, time, buf); } + window->unreadHard = bufferReflow( + window->buffer, COLS, window->ignore, window->unreadSoft + ); } free(buf); -- cgit 1.4.1