From eb91347308c90ec07b4680aeb2a693c475daea9d Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 5 Feb 2020 18:01:57 -0500 Subject: Only reflow text when COLS changes --- ui.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); -- cgit 1.4.1 selected='selected'>master dontfiles
summary refs log tree commit diff
path: root/txt (unfollow)
Commit message (Expand)Author
2024-06-09Put lens and (future) film at the tops of photo pagesJune McEnroe
2024-05-22Remove use of sysexits.hJune McEnroe
2024-05-22Add photo descriptions from 05-03 and 05-06June McEnroe
2024-05-21Fix = precedence in whenJune McEnroee='2021-02-06 19:48:14 -0500'>2021-02-06Add xterm output to schemeJune McEnroe