From b0000d61d561f733c4e4022a3255ced8f3e88151 Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 03:31:53 +0200 Subject: [PATCH] Move navigation prompt to same line as description --- src/tui.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tui.rs b/src/tui.rs index bda4837..a666c31 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -473,7 +473,7 @@ fn draw_select_list( desc_line, Rect { x: area.x, - y: area.y + area.height.saturating_sub(1), + y: base_y, width: area.width, height: 1, }, @@ -491,7 +491,7 @@ fn draw_select_list( prompt_p, Rect { x: area.x, - y: area.y + area.height.saturating_sub(1), + y: base_y, width: area.width.saturating_sub(2), height: 1, }, @@ -582,7 +582,7 @@ fn draw_select_list_with_info( prompt_p, Rect { x: area.x, - y: area.y + area.height.saturating_sub(1), + y: base_y, width: area.width.saturating_sub(2), height: 1, },