summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client/application.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/client/application.go b/client/application.go
index 9f6a5a1..eb72d14 100644
--- a/client/application.go
+++ b/client/application.go
@@ -33,8 +33,6 @@ func newApplication(serverAddress string) *application {
app.cache = object.NewCache(&app)
app.windowCache = window.NewCache()
app.goTo(app.cmdWindow.Location())
-
- app.cmdWindow.info("welcome! type /help for help. try: /join talk")
app.cmdWindow.info("connecting to %s", app.Client.Address)
app.redraw = true
@@ -197,6 +195,7 @@ func (a *application) onAuth() {
}
}
})
+ a.cmdWindow.info("welcome! type /help for help. try: /join talk")
}
func (a *application) sendUpdate(o proto.Object, cb func(proto.Command)) {