aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2018-02-17 20:22:58 -0500
committerDrew DeVault <sir@cmpwn.com>2018-02-17 20:22:58 -0500
commit07f7cac2f3c5b7b74d16296d5afb57ff7e908130 (patch)
treebbe51c2ad4a608f1b979e0ce045e77068c242e8b
parent05ec7357541bcc21dab041da01aec541f6c33cab (diff)
Add fake status line
-rw-r--r--cmd/aerc/main.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/aerc/main.go b/cmd/aerc/main.go
index 8541d08..c784948 100644
--- a/cmd/aerc/main.go
+++ b/cmd/aerc/main.go
@@ -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 {