From fb4b3bfc5a0eb7af18297c6419de9973dd506a5a Mon Sep 17 00:00:00 2001 From: forkless Date: Mon, 1 Jun 2026 03:42:29 +0200 Subject: [PATCH] Prompt one row above description in pickers --- src/tui.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tui.rs b/src/tui.rs index bbc5fd2..5340804 100644 --- a/src/tui.rs +++ b/src/tui.rs @@ -582,7 +582,7 @@ fn draw_select_list_with_info( prompt_p, Rect { x: area.x, - y: base_y, + y: base_y.saturating_sub(1), width: area.width.saturating_sub(2), height: 1, },