From 9fdb7bc098ab5ef7aa07624a7718b42e972498c0 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Fri, 9 Aug 2024 17:18:10 +0200 Subject: [PATCH] Make window bigger --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index 0843532..8ac3f89 100644 --- a/main.go +++ b/main.go @@ -105,8 +105,8 @@ func main() { // Create application with options err = wails.Run(&options.App{ Title: "calorie-counter", - Width: 1024, - Height: 768, + Width: 1920, + Height: 1080, AssetServer: &assetserver.Options{ Assets: assets, },