diff options
author | June McEnroe <june@causal.agency> | 2020-07-12 09:38:52 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-07-12 09:38:52 -0400 |
commit | 787771bebb6ab3f72163eeca3b883bcebb7a1468 (patch) | |
tree | f9591764f2c65fae8035eb2d93d5e476fde0cb37 | |
parent | Don't scan ignored messages for URLs (diff) | |
download | catgirl-787771bebb6ab3f72163eeca3b883bcebb7a1468.tar.gz catgirl-787771bebb6ab3f72163eeca3b883bcebb7a1468.zip |
Keep scrolled up windows in status line
-rw-r--r-- | ui.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui.c b/ui.c index 23f98a0..69eafee 100644 --- a/ui.c +++ b/ui.c @@ -456,7 +456,7 @@ static void statusUpdate(void) { wmove(status, 0, 0); for (uint num = 0; num < windows.len; ++num) { const struct Window *window = windows.ptrs[num]; - if (num != windows.show) { + if (num != windows.show && !window->scroll) { if (window->heat < Warm) continue; if (window->mute && window->heat < Hot) continue; } |