summaryrefslogtreecommitdiffstats
path: root/pkg/gui/context/list_renderer.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/context/list_renderer.go')
-rw-r--r--pkg/gui/context/list_renderer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/gui/context/list_renderer.go b/pkg/gui/context/list_renderer.go
index 40562a599..cca5a6c77 100644
--- a/pkg/gui/context/list_renderer.go
+++ b/pkg/gui/context/list_renderer.go
@@ -23,7 +23,7 @@ func (self *ListRenderer) renderLines(startIdx int, endIdx int) string {
if self.getColumnAlignments != nil {
columnAlignments = self.getColumnAlignments()
}
- lines := utils.RenderDisplayStrings(
+ lines, _ := utils.RenderDisplayStrings(
self.getDisplayStrings(startIdx, utils.Min(endIdx, self.list.Len())),
columnAlignments)
return strings.Join(lines, "\n")