about summary refs log tree commit diff
path: root/ui.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-17 11:57:29 -0500
committerJune McEnroe <june@causal.agency>2020-02-17 11:57:29 -0500
commitcf83e95114eafc1fc357c68cfedc661482992ac1 (patch)
tree1c12fd321c0e288aeae25ab0dbf71567654a86e2 /ui.c
parentScroll the window only once during reflow (diff)
downloadcatgirl-cf83e95114eafc1fc357c68cfedc661482992ac1.tar.gz
catgirl-cf83e95114eafc1fc357c68cfedc661482992ac1.zip
Only scroll after reflow if necessary
If we've already filled up every line of the window, there is no need to
scroll.
Diffstat (limited to 'ui.c')
-rw-r--r--ui.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/ui.c b/ui.c
index 938eda6..84a0d9c 100644
--- a/ui.c
+++ b/ui.c
@@ -634,8 +634,10 @@ static void reflow(struct Window *window) {
 		}
 		flowed += lines;
 	}
-	wscrl(window->pad, -(WindowLines - 1 - flowed));
-	wmove(window->pad, WindowLines - 1, RIGHT);
+	if (flowed < WindowLines) {
+		wscrl(window->pad, -(WindowLines - 1 - flowed));
+		wmove(window->pad, WindowLines - 1, RIGHT);
+	}
 }
 
 static void resize(void) {