diff options
Diffstat (limited to 'client/application.go')
| -rw-r--r-- | client/application.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/client/application.go b/client/application.go index 6d44be0..b1fbf5b 100644 --- a/client/application.go +++ b/client/application.go @@ -19,6 +19,7 @@ type application struct { currentWindow window.Location windowHist []window.Location channelList channelList + redraw bool cmdWindow cmdWindow prompts []window.Prompt activePaste <-chan string @@ -33,6 +34,8 @@ func newApplication(serverAddress string) *application { app.cmdWindow.info("welcome! type /help for help. try: /join talk") app.cmdWindow.info("connecting to %s", app.Client.Address) + + app.redraw = true return &app } |
