We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c08484e commit 7a5349dCopy full SHA for 7a5349d
2 files changed
frontend/index.html
@@ -8,6 +8,10 @@
8
name="viewport"
9
/>
10
<title>LeviLauncher</title>
11
+ <script>
12
+ window._wails = window._wails || {};
13
+ window._wails.flags = window._wails.flags || {};
14
+ </script>
15
</head>
16
17
<body>
main.go
@@ -381,7 +381,9 @@ func main() {
381
windows.OnWindowEvent(events.Common.WindowRestore, func(_ *application.WindowEvent) {
382
syncWindowResizeHandles()
383
})
384
- syncWindowResizeHandles()
+ windows.OnWindowEvent(events.Windows.WebViewNavigationCompleted, func(_ *application.WindowEvent) {
385
+ syncWindowResizeHandles()
386
+ })
387
windows.RegisterHook(events.Common.WindowClosing, func(event *application.WindowEvent) {
388
w := windows.Width()
389
h := windows.Height()
0 commit comments