about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-05 18:01:57 -0500
committerJune McEnroe <june@causal.agency>2020-02-05 18:01:57 -0500
commiteb91347308c90ec07b4680aeb2a693c475daea9d (patch)
treee257658245441e51fa16d4463adc5aa292266391
parentFix SIGWINCH handling (diff)
downloadcatgirl-eb91347308c90ec07b4680aeb2a693c475daea9d.tar.gz
catgirl-eb91347308c90ec07b4680aeb2a693c475daea9d.zip
Only reflow text when COLS changes
-rw-r--r--ui.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui.c b/ui.c
index 894e04d..da28b76 100644
--- a/ui.c
+++ b/ui.c
@@ -434,7 +434,9 @@ static void reflow(struct Window *window) {
 }
 
 static void resize(void) {
-	// FIXME: Only reflow when COLS changes.
+	int height, width;
+	getmaxyx(windows.active->pad, height, width);
+	if (width == COLS) return;
 	for (struct Window *window = windows.head; window; window = window->next) {
 		wresize(window->pad, BufferCap, COLS);
 		reflow(window);
t/bin/htagml.c?id=4bd6bb0f36f1e234a6aa8f1cd3d2660c9888b838&follow=1'>Split fields by tab onlyJune McEnroe 2021-01-12List both Makefile and html.sh under README.7June McEnroe 2021-01-12Add htagml exampleJune McEnroe 2021-01-12Use mandoc and htagml for bin htmlJune McEnroe 2021-01-12Add htagmlJune McEnroe 2021-01-12Replace causal.agency with a simple mdoc pageJune McEnroe 2021-01-11Publish "Using vi"June McEnroe 2021-01-11Enable diff.colorMovedJune McEnroe 2021-01-10Set less search case-insensitiveJune McEnroe 2021-01-10Set EXINITJune McEnroe 2021-01-09Add c -t flag to print expression typeJune McEnroe 2021-01-05Update taglineJune McEnroe