From 4a3b66ab1dc572a6ea4ee138b606d103aca76f85 Mon Sep 17 00:00:00 2001 From: Berin Larson Date: Thu, 28 Mar 2019 06:48:00 +0530 Subject: [PATCH] Make header row fixed when scrolling --- internal/views/table.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/views/table.go b/internal/views/table.go index c586d7c4..5f59dfb9 100644 --- a/internal/views/table.go +++ b/internal/views/table.go @@ -53,6 +53,7 @@ func newTableView(app *appView, title string) *tableView { { v.baseTitle = title v.actions = make(keyActions) + v.SetFixed(1, 0) v.SetBorder(true) v.SetBorderColor(tcell.ColorDodgerBlue) v.SetBorderAttributes(tcell.AttrBold)