From b2d5381ab4992fd58e1bf59082edc714341b3a54 Mon Sep 17 00:00:00 2001 From: Mārtiņš Mačs Date: Wed, 29 Jan 2020 18:17:06 +0200 Subject: Fix --show-info when lines do not fit in the screen --- src/fzy.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/fzy.c b/src/fzy.c index c2e5600..967a1fc 100644 --- a/src/fzy.c +++ b/src/fzy.c @@ -53,8 +53,12 @@ int main(int argc, char *argv[]) { if (options.num_lines > choices.size) options.num_lines = choices.size; - if (options.num_lines + 1 > tty_getheight(&tty)) - options.num_lines = tty_getheight(&tty) - 1; + int num_lines_adjustment = 1; + if (options.show_info) + num_lines_adjustment++; + + if (options.num_lines + num_lines_adjustment > tty_getheight(&tty)) + options.num_lines = tty_getheight(&tty) - num_lines_adjustment; tty_interface_t tty_interface; tty_interface_init(&tty_interface, &tty, &choices, &options); -- cgit v1.2.3