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

Fix typo in BaseButton shortcut context methods

This commit is contained in:
Hugo Locurcio
2022-03-07 22:36:12 +01:00
parent f488a841c7
commit be5116c4a4
3 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@
void MenuButton::unhandled_key_input(const Ref<InputEvent> &p_event) {
ERR_FAIL_COND(p_event.is_null());
if (!_is_focus_owner_in_shorcut_context()) {
if (!_is_focus_owner_in_shortcut_context()) {
return;
}