ui: fix FreeBSD build by matching tray_theme_other build tags to tray.go

tray_theme_other.go references Tray but its build tag selected it on
FreeBSD, where tray.go (which defines Tray) is excluded via !freebsd.
Add the same !android && !ios && !freebsd && !js exclusions to the stub.
This commit is contained in:
Zoltán Papp
2026-06-17 12:35:44 +02:00
parent db2ea7554f
commit 3715fe9b72

View File

@@ -1,4 +1,4 @@
//go:build !linux || (linux && 386)
//go:build (!linux || (linux && 386)) && !android && !ios && !freebsd && !js
package main