forked from cwtch.im/cwtch
1
0
Fork 0

Minor changes

This commit is contained in:
Sarah Jamie Lewis 2018-06-12 16:55:05 -07:00
parent 0ef06428ed
commit cc90b1a979
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ func main() {
historyBox := tui.NewVBox(historyScroll) historyBox := tui.NewVBox(historyScroll)
historyBox.SetBorder(true) historyBox.SetBorder(true)
historyBox.SetTitle("cwtch chat:" + group.GroupID + "@" + group.GroupServer) historyBox.SetTitle("cwtchat:" + group.GroupID + "@" + group.GroupServer)
input := tui.NewEntry() input := tui.NewEntry()
input.SetFocused(true) input.SetFocused(true)
@ -79,7 +79,7 @@ func main() {
seen[string(m.Signature)] = true seen[string(m.Signature)] = true
} }
} }
time.Sleep(time.Second * 5) time.Sleep(time.Second * 1)
} }
}() }()