Remove duplicate shortcut definitions
This commit is contained in:
parent
aaa4560729
commit
e065d7132a
12 changed files with 68 additions and 49 deletions
|
|
@ -6297,6 +6297,11 @@ EditorNode::EditorNode() {
|
|||
EditorSettings::create();
|
||||
}
|
||||
|
||||
ED_SHORTCUT("editor/lock_selected_nodes", TTR("Lock Selected Node(s)"), KeyModifierMask::CMD_OR_CTRL | Key::L);
|
||||
ED_SHORTCUT("editor/unlock_selected_nodes", TTR("Unlock Selected Node(s)"), KeyModifierMask::CMD_OR_CTRL | KeyModifierMask::SHIFT | Key::L);
|
||||
ED_SHORTCUT("editor/group_selected_nodes", TTR("Group Selected Node(s)"), KeyModifierMask::CMD_OR_CTRL | Key::G);
|
||||
ED_SHORTCUT("editor/ungroup_selected_nodes", TTR("Ungroup Selected Node(s)"), KeyModifierMask::CMD_OR_CTRL | KeyModifierMask::SHIFT | Key::G);
|
||||
|
||||
FileAccess::set_backup_save(EDITOR_GET("filesystem/on_save/safe_save_on_backup_then_rename"));
|
||||
|
||||
_update_vsync_mode();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue