From 0b7b060db78232641417753193fe681384c6f74f Mon Sep 17 00:00:00 2001 From: MarvinJWendt Date: Thu, 18 Aug 2022 16:41:22 +0200 Subject: [PATCH] fixed #376 --- interactive_textinput_printer.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interactive_textinput_printer.go b/interactive_textinput_printer.go index 5d5ddd4b2..5688d7368 100644 --- a/interactive_textinput_printer.go +++ b/interactive_textinput_printer.go @@ -181,6 +181,9 @@ func (p *InteractiveTextInputPrinter) Show(text ...string) (string, error) { return "", err } + // Add new line + Println() + for i, s := range p.input { if i < len(p.input)-1 { areaText += s + "\n"