perf: improve the readability of the code
This commit is contained in:
parent
dbe3d995b4
commit
19039f0b28
7
main.go
7
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())
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue