diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-09-15 22:27:27 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2022-09-15 22:27:27 +0300 |
commit | 89c68bb22d02e91e76390592e1769e30cf8eb463 (patch) | |
tree | d6ff5c00738359eae6555b7395d52f409a46b456 /platform/macos | |
parent | c2babb65580d4dce3a0fc8834dd05fe177227b6e (diff) |
[macOS] Remove tabs for "Quit" menu item.
Diffstat (limited to 'platform/macos')
-rw-r--r-- | platform/macos/display_server_macos.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/macos/display_server_macos.mm b/platform/macos/display_server_macos.mm index 91c6da5d13..25c51bc89f 100644 --- a/platform/macos/display_server_macos.mm +++ b/platform/macos/display_server_macos.mm @@ -3537,7 +3537,7 @@ DisplayServerMacOS::DisplayServerMacOS(const String &p_rendering_driver, WindowM [apple_menu addItem:[NSMenuItem separatorItem]]; - title = [NSString stringWithFormat:NSLocalizedString(@"\t\tQuit %@", nil), nsappname]; + title = [NSString stringWithFormat:NSLocalizedString(@"Quit %@", nil), nsappname]; [apple_menu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; // Add items to the menu bar. |