From cc379d407c58c2834982da952e09a9e68a61b21c Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 8 Jan 2026 22:25:41 -0500 Subject: [PATCH] Re-instate prepended new line for prompt in InputMenuGen --- front/input.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/input.go b/front/input.go index 5e07ecf..80d0eca 100644 --- a/front/input.go +++ b/front/input.go @@ -54,5 +54,5 @@ func InputMenuGen(prompt string, options []string) int { for i, option := range options { fmt.Printf("%d. %s\n", i+1, option) } - return InputInt(prompt, 1, len(options)) + return InputInt("\n"+prompt, 1, len(options)) }