Files

13 lines
232 B
Go
Raw Permalink Normal View History

2020-11-24 19:43:25 +11:00
package menu
2021-09-19 17:13:54 +10:00
/*
2020-11-24 19:43:25 +11:00
// DefaultMacMenu returns a default menu including the default
// Application and Edit menus. Use `.Append()` to add to it.
func DefaultMacMenu() *Menu {
return NewMenuFromItems(
AppMenu(),
EditMenu(),
)
}
2021-09-19 17:13:54 +10:00
*/