summaryrefslogtreecommitdiff
path: root/core/input/input_event.cpp
diff options
context:
space:
mode:
authorEmmanouil Papadeas <manoschool@yahoo.gr>2022-07-17 17:20:37 +0300
committerEmmanouil Papadeas <manoschool@yahoo.gr>2022-07-17 17:20:37 +0300
commit38b51942d6d346d19dd5d4cd1073389caf0152fc (patch)
tree51420038960a673b81a2d5cded6a3a80ab09e951 /core/input/input_event.cpp
parent87ca6a67ffb490201a07dc2f4dc15e79f4f11e43 (diff)
Fix `InputEventAction`'s `is_action` method ignoring `exact_match` parameter
Diffstat (limited to 'core/input/input_event.cpp')
-rw-r--r--core/input/input_event.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/input/input_event.cpp b/core/input/input_event.cpp
index 3c104c2c86..b748dcedfb 100644
--- a/core/input/input_event.cpp
+++ b/core/input/input_event.cpp
@@ -1309,7 +1309,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 {