Merge pull request #63109 from OverloadedOrama/fix-input-event-action

Fix `InputEventAction`'s `is_match` method ignoring `exact_match` parameter
This commit is contained in:
Rémi Verschelde 2022-09-25 11:06:38 +02:00
commit f3d763011f
1 changed files with 1 additions and 1 deletions

View File

@ -1325,7 +1325,7 @@ bool InputEventAction::is_match(const Ref<InputEvent> &p_event, bool p_exact_mat
return false;
}
return p_event->is_action(action);
return p_event->is_action(action, p_exact_match);
}
bool InputEventAction::is_action(const StringName &p_action) const {