summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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 {