diff options
author | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-12-07 13:38:40 -0300 |
---|---|---|
committer | Marcelo Fernandez <marcelofg55@gmail.com> | 2018-12-11 19:54:52 -0300 |
commit | 792786b4b7e8d1fd4f708178d77537b6811e9be1 (patch) | |
tree | afbe0b83f613dc1a54955fc672df736cd5dd33c2 /editor/editor_audio_buses.h | |
parent | 19f2a188bb305c4a446f63a0b5417086b7261514 (diff) | |
download | redot-engine-792786b4b7e8d1fd4f708178d77537b6811e9be1.tar.gz |
Fix EditorAudioBuses not updating when changing to a device with different channels
Diffstat (limited to 'editor/editor_audio_buses.h')
-rw-r--r-- | editor/editor_audio_buses.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/editor/editor_audio_buses.h b/editor/editor_audio_buses.h index 4cdcb65d7b..02038fbe18 100644 --- a/editor/editor_audio_buses.h +++ b/editor/editor_audio_buses.h @@ -59,6 +59,7 @@ class EditorAudioBus : public PanelContainer { VSlider *slider; int cc; + static const int CHANNELS_MAX = 4; struct { bool prev_active; @@ -68,7 +69,7 @@ class EditorAudioBus : public PanelContainer { TextureProgress *vu_l; TextureProgress *vu_r; - } channel[4]; + } channel[CHANNELS_MAX]; TextureRect *scale; OptionButton *send; @@ -102,6 +103,7 @@ class EditorAudioBus : public PanelContainer { void _effect_selected(); void _delete_effect_pressed(int p_option); void _effect_rmb(const Vector2 &p_pos); + void _update_visible_channels(); virtual Variant get_drag_data(const Point2 &p_point); virtual bool can_drop_data(const Point2 &p_point, const Variant &p_data) const; |