diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-11 09:47:08 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-11 09:47:08 +0100 |
commit | 9af4628bbeecbb3348b3a462da3efff342db153e (patch) | |
tree | 5c1eda6a4e0766b1e8ffe6c9a3744097cc7e1b92 /editor/input_event_configuration_dialog.cpp | |
parent | baae87e307d0701a7b5e37dbbc6ea1e0f6cb012a (diff) | |
parent | 3bf06e955e7e637ff6896019ecfe01e3023bfab6 (diff) | |
download | redot-engine-9af4628bbeecbb3348b3a462da3efff342db153e.tar.gz |
Merge pull request #71159 from EricEzaM/minor-input-configuration-fixes
Propagate allowed input types to `event_listener` when setting them on `InputEventConfigurationDialog`
Diffstat (limited to 'editor/input_event_configuration_dialog.cpp')
-rw-r--r-- | editor/input_event_configuration_dialog.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/input_event_configuration_dialog.cpp b/editor/input_event_configuration_dialog.cpp index b137f6f668..08d4bfff4a 100644 --- a/editor/input_event_configuration_dialog.cpp +++ b/editor/input_event_configuration_dialog.cpp @@ -515,6 +515,7 @@ Ref<InputEvent> InputEventConfigurationDialog::get_event() const { void InputEventConfigurationDialog::set_allowed_input_types(int p_type_masks) { allowed_input_types = p_type_masks; + event_listener->set_allowed_input_types(p_type_masks); } InputEventConfigurationDialog::InputEventConfigurationDialog() { |