diff options
author | June McEnroe <june@causal.agency> | 2020-02-10 02:55:21 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-10 02:55:21 -0500 |
commit | 3c898576524a8384a81a21aa58d0ba1b3d354322 (patch) | |
tree | 37191fdae3c07fe58365e4734389b237528b1c23 | |
parent | Update line count for words longer than lines (diff) | |
download | catgirl-3c898576524a8384a81a21aa58d0ba1b3d354322.tar.gz catgirl-3c898576524a8384a81a21aa58d0ba1b3d354322.zip |
Move scroll marker on resize
-rw-r--r-- | ui.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui.c b/ui.c index 7c933f6..d35c02d 100644 --- a/ui.c +++ b/ui.c @@ -527,6 +527,7 @@ static void reflow(struct Window *window) { } static void resize(void) { + mvwin(marker, LINES - 2, 0); int height, width; getmaxyx(windows.active->pad, height, width); if (width == COLS) return; |