1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-08 12:40:44 +00:00

Rename ShortCut to Shortcut which is more grammatically correct

See https://github.com/godotengine/godot/issues/16863#issuecomment-685236980.
This commit is contained in:
Hugo Locurcio
2020-09-09 21:53:24 +02:00
parent 7015c59e2e
commit 3e0226515e
17 changed files with 99 additions and 98 deletions

View File

@@ -2246,7 +2246,7 @@ Point2i Node3DEditorViewport::_get_warped_mouse_motion(const Ref<InputEventMouse
}
static bool is_shortcut_pressed(const String &p_path) {
Ref<ShortCut> shortcut = ED_GET_SHORTCUT(p_path);
Ref<Shortcut> shortcut = ED_GET_SHORTCUT(p_path);
if (shortcut.is_null()) {
return false;
}