diff options
Diffstat (limited to '')
-rw-r--r-- | ui.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui.c b/ui.c index 3ecea9f..89dd4da 100644 --- a/ui.c +++ b/ui.c @@ -457,7 +457,9 @@ static void windowUpdate(void) { if (line->heat < Cold && window->ignore) continue; wmove(main, y, 0); styleAdd(main, line->str); - wclrtoeol(main); + int ny, nx; + getyx(main, ny, nx); + if (ny == y) wclrtoeol(main); if (!y--) break; } |