From 3748218b047190664f5463d715c032c70266ce34 Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 03:35:22 +0200 Subject: [PATCH] Move prompt to description line (with_info pickers) --- src/tui.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/tui.rs b/src/tui.rs index a666c31..bda4837 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -473,7 +473,7 @@ fn draw_select_list( desc_line, Rect { x: area.x, - y: base_y, + y: area.y + area.height.saturating_sub(1), width: area.width, height: 1, }, @@ -491,7 +491,7 @@ fn draw_select_list( prompt_p, Rect { x: area.x, - y: base_y, + y: area.y + area.height.saturating_sub(1), 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: base_y, + y: area.y + area.height.saturating_sub(1), width: area.width.saturating_sub(2), height: 1, },