Files
netbird/client/ui/tray_status_enabled_linux.go
Zoltan Papp edf7e2d04d Tighten verbose comments in Wails UI Go code
Shorten over-long godoc/inline comments across the client/ui tray and
services code: drop narrative restatement, legacy-Fyne tangents, and text
already evident from signatures and names. Keep only the non-obvious why
(concurrency/lock ordering, platform quirks, ordering constraints, the
profile-switch state table). No code changes.
2026-06-13 00:22:27 +02:00

9 lines
266 B
Go

//go:build linux
package main
// statusRowEnabled keeps the top status row enabled on Linux: a disabled row
// paints greyed-out, washing out the status dot. The row has no OnClick, so
// enabling only affects drawing.
func statusRowEnabled() bool { return true }