perf: improve the readability of the code

This commit is contained in:
igophper 2024-04-08 19:43:43 +08:00
parent dbe3d995b4
commit 19039f0b28
1 changed files with 4 additions and 3 deletions

View File

@ -50,7 +50,7 @@ func main() {
} }
// Create application with options // Create application with options
err := wails.Run(&options.App{ app := &options.App{
Title: "Tiny RDM", Title: "Tiny RDM",
Width: windowWidth, Width: windowWidth,
Height: windowHeight, Height: windowHeight,
@ -122,9 +122,10 @@ func main() {
WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand, WebviewGpuPolicy: linux.WebviewGpuPolicyOnDemand,
WindowIsTranslucent: true, WindowIsTranslucent: true,
}, },
}) }
if err != nil { // run application
if err := wails.Run(app); err != nil {
println("Error:", err.Error()) println("Error:", err.Error())
} }
} }