This commit is contained in:
Kovid Goyal 2023-12-07 09:30:04 +05:30
parent 22ac57c374
commit 92befa26db
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -130,6 +130,9 @@ func GetChoices(o *Options) (response string, err error) {
}
draw_long_text := func(screen_width int, text string, msg_lines []string) []string {
if screen_width < 3 {
return msg_lines
}
if text == "" {
msg_lines = append(msg_lines, "")
} else {