Browse Source

Fix `InputEventAction`'s `is_action` method ignoring `exact_match` parameter

Emmanouil Papadeas 3 years ago
parent
commit
38b51942d6
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/input/input_event.cpp

+ 1 - 1
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 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 {
 bool InputEventAction::is_action(const StringName &p_action) const {