From cc90b1a979a0fc471ffebc3f2294ec938aef2a0d Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Tue, 12 Jun 2018 16:55:05 -0700 Subject: [PATCH] Minor changes --- app/tui/main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/tui/main.go b/app/tui/main.go index a395f22..abb9b8b 100644 --- a/app/tui/main.go +++ b/app/tui/main.go @@ -26,7 +26,7 @@ func main() { historyBox := tui.NewVBox(historyScroll) historyBox.SetBorder(true) - historyBox.SetTitle("cwtch chat:" + group.GroupID + "@" + group.GroupServer) + historyBox.SetTitle("cwtchat:" + group.GroupID + "@" + group.GroupServer) input := tui.NewEntry() input.SetFocused(true) @@ -79,7 +79,7 @@ func main() { seen[string(m.Signature)] = true } } - time.Sleep(time.Second * 5) + time.Sleep(time.Second * 1) } }()