fix: 修复Windows/Linux编译缺失onAppActive符号的问题
Release / build-macos (push) Canceled after 0s
Release / build-windows (push) Canceled after 0s
Release / release (push) Canceled after 0s

onAppActive 仅在 dock_callback_darwin.go 中定义,导致非 darwin
平台 go vet/编译失败。在 dock_other.go 补充同名声明。
This commit is contained in:
2026-07-09 10:48:23 +08:00
parent 1c4906c266
commit b52db70015
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -2,6 +2,8 @@
package ui
var onAppActive func()
func showDockIcon() {}
func hideDockIcon() {}