5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-17 01:19:29 +08:00

[v2] Template updates

This commit is contained in:
Lea Anthony 2021-09-27 20:11:44 +10:00
parent b7c28ab1f2
commit 3781cbe731

View File

@ -19,7 +19,7 @@ func main() {
// Create application with options
err := wails.Run(&options.App{
Title: "",
Title: "{{.ProjectName}}",
Width: 720,
Height: 570,
MinWidth: 720,
@ -42,9 +42,9 @@ func main() {
},
// Windows platform specific options
Windows: &windows.Options{
WebviewIsTransparent: true,
WindowIsTranslucent: true,
DisableWindowIcon: true,
WebviewIsTransparent: false,
WindowIsTranslucent: false,
DisableWindowIcon: false,
},
})