diff options
author | Eric M <itsjusteza@gmail.com> | 2023-01-10 23:26:33 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2023-01-10 23:26:33 +1000 |
commit | 3bf06e955e7e637ff6896019ecfe01e3023bfab6 (patch) | |
tree | ad99335fba36fd1a5243db59b161c3959651e78f /editor/input_event_configuration_dialog.cpp | |
parent | 269fa200d04ae96b0114b788e18df638c5fb164b (diff) | |
download | redot-engine-3bf06e955e7e637ff6896019ecfe01e3023bfab6.tar.gz |
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() { |