From 36dac7f131f03bec4e531e2a07cd100122b85444 Mon Sep 17 00:00:00 2001 From: suixinio Date: Thu, 11 Feb 2021 01:34:17 +0800 Subject: [PATCH] Fix the support of "updateui.go" in Windows Fix the support of "updateui.go" in Windows - Missing _ "github.com/andlabs/ui/winmanifest" cannot run in Windows --- examples/updateui.go | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/updateui.go b/examples/updateui.go index 48aadfd..54e5128 100644 --- a/examples/updateui.go +++ b/examples/updateui.go @@ -5,6 +5,7 @@ import ( "time" "github.com/andlabs/ui" + _ "github.com/andlabs/ui/winmanifest" ) // Example showing how to update the UI using the QueueMain function