summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorraven <citrons@mondecitronne.com>2025-10-22 15:44:06 -0500
committerraven <citrons@mondecitronne.com>2025-10-22 15:44:06 -0500
commit9126f2329aa21645e0d5622b0eeed402273efa95 (patch)
treee247e7a3d43666bbe3175bc928c599900c68c284
parentc4fe53ce77d0dc4cb204715ddd299c04a077c95b (diff)
show welcome message after logged in
-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)) {