mirror of
https://github.com/netbirdio/netbird.git
synced 2026-07-16 11:39:57 +00:00
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.
9 lines
266 B
Go
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 }
|