From 9126f2329aa21645e0d5622b0eeed402273efa95 Mon Sep 17 00:00:00 2001 From: raven Date: Wed, 22 Oct 2025 15:44:06 -0500 Subject: show welcome message after logged in --- client/application.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'client') 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)) { -- cgit v1.2.3