Add fake status line

This commit is contained in:
Drew DeVault 2018-02-17 20:22:58 -05:00
parent 05ec735754
commit 07f7cac2f3
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ func main() {
grid.AddChild(tabs.TabStrip).At(0, 1)
grid.AddChild(tabs.TabContent).At(1, 1)
// ex line placeholder:
grid.AddChild(fill('+')).At(2, 1)
grid.AddChild(ui.NewText("Connected").
Color(tb.ColorBlack, tb.ColorWhite)).At(2, 1)
_ui, err := ui.Initialize(conf, grid)
if err != nil {