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

[windows] fix for no windows config

This commit is contained in:
Lea Anthony 2021-05-17 19:50:12 +10:00
parent f5056e7232
commit 7591b45ffa

View File

@ -15,6 +15,9 @@ import "C"
func (a *Application) processPlatformSettings() error { func (a *Application) processPlatformSettings() error {
config := a.config.Windows config := a.config.Windows
if config == nil {
return nil
}
// Check if the webview should be transparent // Check if the webview should be transparent
if config.WebviewIsTransparent { if config.WebviewIsTransparent {