From 1b850662edf82e639f4c530e2123dbdf4f7857ee Mon Sep 17 00:00:00 2001 From: Travis McLane Date: Tue, 31 Oct 2023 17:14:28 -0500 Subject: [PATCH] [v3 example/bindings] enable DevTools --- v3/examples/binding/main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v3/examples/binding/main.go b/v3/examples/binding/main.go index 9e2861e6..15a448bb 100644 --- a/v3/examples/binding/main.go +++ b/v3/examples/binding/main.go @@ -25,7 +25,8 @@ func main() { }) app.NewWebviewWindowWithOptions(application.WebviewWindowOptions{ - URL: "/", + URL: "/", + DevToolsEnabled: true, }) err := app.Run()