5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-03 00:41:59 +08:00

v2.0.0-beta.44.2

This commit is contained in:
Lea Anthony 2022-08-20 13:51:26 +10:00
parent 2466bb1fac
commit 3474d4e1e1
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
2 changed files with 5 additions and 5 deletions

View File

@ -1 +1 @@
v2.0.0-beta.44.1
v2.0.0-beta.44.2

View File

@ -186,10 +186,10 @@ func CreateApp(appoptions *options.App) (*App, error) {
// Create binding exemptions - Ugly hack. There must be a better way
bindingExemptions := []interface{}{
a.appoptions.OnStartup,
a.appoptions.OnShutdown,
a.appoptions.OnDomReady,
a.appoptions.OnBeforeClose,
appoptions.OnStartup,
appoptions.OnShutdown,
appoptions.OnDomReady,
appoptions.OnBeforeClose,
}
appBindings := binding.NewBindings(myLogger, appoptions.Bind, bindingExemptions)