diff options
Diffstat (limited to 'systray.go')
| -rw-r--r-- | systray.go | 5 | 
1 files changed, 5 insertions, 0 deletions
| @@ -100,6 +100,11 @@ func AddMenuItem(title string, tooltip string) *MenuItem {  	return item  } +// AddSeparator adds a separator bar to the menu +func AddSeparator() { +	addSeparator() +} +  // SetTitle set the text to display on a menu item  func (item *MenuItem) SetTitle(title string) {  	item.title = title | 
