New OS window -> New OS Window

This commit is contained in:
Kovid Goyal 2021-05-21 17:57:53 +05:30
parent 46a0566e2e
commit 0ca4faa25b
No known key found for this signature in database
GPG key ID: 06BC317B515ACE7C

View file

@ -145,7 +145,7 @@ + (GlobalMenuTarget *) shared_instance
if (!dockMenu) {
GlobalMenuTarget *global_menu_target = [GlobalMenuTarget shared_instance];
dockMenu = [[NSMenu alloc] init];
[[dockMenu addItemWithTitle:@"New OS window"
[[dockMenu addItemWithTitle:@"New OS Window"
action:@selector(new_os_window:)
keyEquivalent:@""]
setTarget:global_menu_target];
@ -374,7 +374,7 @@ - (BOOL)openFilesFromPasteboard:(NSPasteboard *)pasteboard type:(int)type {
keyEquivalent:@""];
[appMenu addItem:[NSMenuItem separatorItem]];
MENU_ITEM(appMenu, @"Preferences…", edit_config_file);
MENU_ITEM(appMenu, @"New OS window", new_os_window);
MENU_ITEM(appMenu, @"New OS Window", new_os_window);
[appMenu addItemWithTitle:[NSString stringWithFormat:@"Hide %@", app_name]
action:@selector(hide:)