Files

14 lines
257 B
Go
Raw Permalink Normal View History

2021-07-04 13:59:21 +10:00
package menu
2021-09-19 17:12:30 +10:00
/*
2021-07-04 13:59:21 +10:00
// DefaultWindowsMenu returns a default menu including the default
// Application and Edit menus. Use `.Append()` to add to it.
func DefaultWindowsMenu() *Menu {
return NewMenuFromItems(
FileMenu(),
EditMenu(),
WindowMenu(),
)
}
2021-09-19 17:12:30 +10:00
*/