Fix InputEventAction
's is_action
method ignoring exact_match
parameter
(cherry picked from commit 38b51942d6
)
This commit is contained in:
parent
8f5ccfa21f
commit
0754c7ee1a
1 changed files with 1 additions and 1 deletions
|
@ -1099,7 +1099,7 @@ bool InputEventAction::shortcut_match(const Ref<InputEvent> &p_event, bool p_exa
|
|||
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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue