diff options
author | Teddy Wing | 2023-09-29 22:51:30 +0200 |
---|---|---|
committer | Teddy Wing | 2023-09-29 22:51:30 +0200 |
commit | f9321f4c7af6e578ab559213b56c307c21d18a87 (patch) | |
tree | f95d11cd0caa70f1a5c9d5bf69161d643b4a0d95 /src | |
parent | f039b8b41e626523e1717e96a9bc4c472fdbeea0 (diff) | |
download | Base-Windowed-Application-f9321f4c7af6e578ab559213b56c307c21d18a87.tar.bz2 |
MainMenu: Remove custom "Open Recent" menu item
Now that we've confirmed that the "Open Recent" menu item is inserted
automatically below the "Open" menu item in document-based applications,
we can safely remove our custom one from the File menu.
Diffstat (limited to 'src')
-rw-r--r-- | src/MainMenu.m | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/MainMenu.m b/src/MainMenu.m index 366a141..fff0653 100644 --- a/src/MainMenu.m +++ b/src/MainMenu.m @@ -181,15 +181,6 @@ NSMenuItem *MainMenuCreateFileMenuItem() action:@selector(openDocument:) keyEquivalent:@"o"]; - // TODO Add a real "Open Recent" menu. - [file_menu - addItemWithTitle:NSLocalizedString( - @"Open Recent", - @"Open Recent menu item." - ) - action:nil - keyEquivalent:@""]; - [file_menu addItem:[NSMenuItem separatorItem]]; [file_menu |