This commit is contained in:
Kovid Goyal 2023-03-23 16:08:58 +05:30
parent d57e47349b
commit 0a8fc3f17c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -125,6 +125,7 @@ func title_lines(left_path, right_path string, columns, margin_size int, ans []*
l1 := ll l1 := ll
l1.screen_lines = []string{title_format(name)} l1.screen_lines = []string{title_format(name)}
l2 := ll l2 := ll
l2.line_type = EMPTY_LINE
l2.screen_lines = []string{title_format(strings.Repeat("━", columns))} l2.screen_lines = []string{title_format(strings.Repeat("━", columns))}
return append(ans, &l1, &l2) return append(ans, &l1, &l2)
} }