Move navigation prompt to same line as description

This commit is contained in:
2026-06-01 03:31:53 +02:00
parent e94179264f
commit b0000d61d5
+3 -3
View File
@@ -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,
},