mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-11 13:21:10 +01:00
Fix InputEventAction
's is_action
method ignoring exact_match
parameter
(cherry picked from commit 38b51942d6d346d19dd5d4cd1073389caf0152fc)
This commit is contained in:
parent
e7f328d8d9
commit
9524cb6a74
@ -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…
Reference in New Issue
Block a user