summary refs log tree commit diff stats
path: root/aerc.go
diff options
context:
space:
mode:
Diffstat (limited to 'aerc.go')
-rw-r--r--aerc.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/aerc.go b/aerc.go
index cfd192a..c71c384 100644
--- a/aerc.go
+++ b/aerc.go
@@ -150,12 +150,16 @@ func main() {
 		return getCompletions(aerc, cmd)
 	}, &commands.CmdHistory)
 
-	ui, err = libui.Initialize(conf, aerc)
+	ui, err = libui.Initialize(aerc)
 	if err != nil {
 		panic(err)
 	}
 	defer ui.Close()
 
+	if conf.Ui.MouseEnabled {
+		ui.EnableMouse()
+	}
+
 	logger.Println("Starting Unix server")
 	as, err := lib.StartServer(logger)
 	if err != nil {