diff --git a/main.go b/main.go index 9d70884..25f3a34 100644 --- a/main.go +++ b/main.go @@ -13,7 +13,10 @@ import ( func main() { mysql.SetLogger(log.New(io.Discard, "", 0)) - if err := app.App.SetRoot(components.MainPages, true).Run(); err != nil { + if err := app.App. + SetRoot(components.MainPages, true). + EnableMouse(true). + Run(); err != nil { panic(err) } }