diff options
author | Eric M <itsjusteza@gmail.com> | 2020-09-17 11:37:12 +1000 |
---|---|---|
committer | Eric M <itsjusteza@gmail.com> | 2020-11-23 21:14:26 +1000 |
commit | fc806409f491f7585eecd0f01bd50609dfc93729 (patch) | |
tree | d07ca807b8f80fb60b1b1a8912e9663c20e726b7 /editor/editor_audio_buses.h | |
parent | 9c69281f87d319d21949b40ceaa6bd3bc30e2591 (diff) | |
download | redot-engine-fc806409f491f7585eecd0f01bd50609dfc93729.tar.gz |
Removed unhandled_key_input from editor AudioBus and instead connect to gui_input signal on tree for handling of effects shortcuts.
Diffstat (limited to 'editor/editor_audio_buses.h')
-rw-r--r-- | editor/editor_audio_buses.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_audio_buses.h b/editor/editor_audio_buses.h index b6cf1183b5..01221ad6ef 100644 --- a/editor/editor_audio_buses.h +++ b/editor/editor_audio_buses.h @@ -91,7 +91,7 @@ class EditorAudioBus : public PanelContainer { mutable bool hovering_drop; void _gui_input(const Ref<InputEvent> &p_event); - void _unhandled_key_input(Ref<InputEvent> p_event); + void _effects_gui_input(Ref<InputEvent> p_event); void _bus_popup_pressed(int p_option); void _name_changed(const String &p_new_name); |