diff options
| author | raven <citrons@mondecitronne.com> | 2025-10-22 15:44:06 -0500 |
|---|---|---|
| committer | raven <citrons@mondecitronne.com> | 2025-10-22 15:44:06 -0500 |
| commit | 9126f2329aa21645e0d5622b0eeed402273efa95 (patch) | |
| tree | e247e7a3d43666bbe3175bc928c599900c68c284 /client/application.go | |
| parent | c4fe53ce77d0dc4cb204715ddd299c04a077c95b (diff) | |
show welcome message after logged in
Diffstat (limited to 'client/application.go')
| -rw-r--r-- | client/application.go | 3 |
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)) { |
