From b8e568d0baed5f2dbd3a97666c806b8a7b6a8fc1 Mon Sep 17 00:00:00 2001 From: Anthony Powles Date: Thu, 4 Mar 2021 01:07:57 -0800 Subject: [PATCH] Add matching background color to the table so it fills the terminal --- service/service.go | 1 + 1 file changed, 1 insertion(+) diff --git a/service/service.go b/service/service.go index 0443a8d..740ceca 100644 --- a/service/service.go +++ b/service/service.go @@ -40,6 +40,7 @@ func NewService(conf *Config) *Service { SetFixed(1, 0). SetSelectable(true, false) table.SetBorderPadding(0, 0, 1, 1) + table.SetBackgroundColor(tcell.ColorBlack.TrueColor()) app.SetRoot(table, true)