diff options
| author | citrons <citrons@mondecitronne.com> | 2025-06-06 00:49:26 -0500 |
|---|---|---|
| committer | citrons <citrons@mondecitronne.com> | 2025-06-07 16:02:18 -0500 |
| commit | 553ebc26cda61b567418205f7ee60be122b3c84f (patch) | |
| tree | cad5406e0b7a8ffd9dacf4dd6a08edd83c2dd4bc /client/application.go | |
| parent | 83f34e602b050a90816de00e381c78f76831a027 (diff) | |
clickable, draggable channel list
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 } |
