diff --git a/systray_nonwindows.go b/systray_nonwindows.go index 2ecc192..c9162b5 100644 --- a/systray_nonwindows.go +++ b/systray_nonwindows.go @@ -35,7 +35,7 @@ func SetIcon(iconBytes []byte) { C.setIcon(cstr, (C.int)(len(iconBytes)), false) } -// SetTitle sets the systray title, only available on Mac. +// SetTitle sets the systray title, only available on Mac and Linux. func SetTitle(title string) { C.setTitle(C.CString(title)) } diff --git a/systray_windows.go b/systray_windows.go index 02bf486..cf9f23b 100644 --- a/systray_windows.go +++ b/systray_windows.go @@ -850,7 +850,7 @@ func SetTemplateIcon(templateIconBytes []byte, regularIconBytes []byte) { SetIcon(regularIconBytes) } -// SetTitle sets the systray title, only available on Mac. +// SetTitle sets the systray title, only available on Mac and Linux. func SetTitle(title string) { // do nothing }