From 553ebc26cda61b567418205f7ee60be122b3c84f Mon Sep 17 00:00:00 2001 From: citrons Date: Fri, 6 Jun 2025 00:49:26 -0500 Subject: clickable, draggable channel list --- client/application.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'client/application.go') 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 } -- cgit v1.2.3