mirror of
https://github.com/netbirdio/netbird.git
synced 2026-09-26 08:39:06 +02:00
Refactor UI --------- Co-authored-by: Eduard Gert <kontakt@eduardgert.de> Co-authored-by: braginini <bangvalo@gmail.com> Co-authored-by: Pascal Fischer <32096965+pascal-fischer@users.noreply.github.com> Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: riccardom <riccardomanfrin@gmail.com>
8 lines
278 B
Go
8 lines
278 B
Go
//go:build !windows && !android && !ios && !freebsd && !js
|
|
|
|
package main
|
|
|
|
// menuLabel is the identity on macOS/Linux, which render "&" literally;
|
|
// Windows escapes it separately (tray_label_windows.go) to dodge the Win32 mnemonic.
|
|
func menuLabel(s string) string { return s }
|