From 19039f0b28e57ca82306d0604d3af25070d0624d Mon Sep 17 00:00:00 2001 From: igophper Date: Mon, 8 Apr 2024 19:43:43 +0800 Subject: [PATCH] perf: improve the readability of the code --- main.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 851049e..0292db5 100644 --- a/main.go +++ b/main.go @@ -50,7 +50,7 @@ func main() { } // Create application with options - err := wails.Run(&options.App{ + app := &options.App{ Title: "Tiny RDM", Width: windowWidth, Height: windowHeight, @@ -122,9 +122,10 @@ func main() { WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand, WindowIsTranslucent: true, }, - }) + } - if err != nil { + // run application + if err := wails.Run(app); err != nil { println("Error:", err.Error()) } }