From cd92019f0393c078aad63bc2d3aa72b6739612e8 Mon Sep 17 00:00:00 2001 From: haranobuhardo Date: Wed, 25 Oct 2023 16:38:59 +0700 Subject: [PATCH] forgot to add AppMenu to app Options --- main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 6e5badb..16d4269 100644 --- a/main.go +++ b/main.go @@ -33,13 +33,14 @@ func main() { // Create application with options err := wails.Run(&options.App{ Title: "free-llm-desktop", - Width: 1024, - Height: 768, + Width: 800, + Height: 600, AssetServer: &assetserver.Options{ Assets: assets, }, BackgroundColour: &options.RGBA{R: 27, G: 38, B: 54, A: 1}, OnStartup: app.startup, + Menu: AppMenu, Bind: []interface{}{ app, },