Merge pull request #38451 from eduardonunesp/feature/command-comma-preferences

Using command + comma on macOS as default shortcut for editor settings
This commit is contained in:
Rémi Verschelde 2020-05-16 13:24:15 +02:00 committed by GitHub
commit 1a43d3b396
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6014,8 +6014,11 @@ EditorNode::EditorNode() {
left_menu_hb->add_child(settings_menu);
p = settings_menu->get_popup();
#ifdef OSX_ENABLED
p->add_shortcut(ED_SHORTCUT("editor/editor_settings", TTR("Editor Settings..."), KEY_MASK_CMD + KEY_COMMA), SETTINGS_PREFERENCES);
#else
p->add_shortcut(ED_SHORTCUT("editor/editor_settings", TTR("Editor Settings...")), SETTINGS_PREFERENCES);
#endif
p->add_separator();
editor_layouts = memnew(PopupMenu);