diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-12-14 21:10:09 +0100 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2020-12-14 21:35:13 +0100 |
commit | 57dcc831522079c7bee14b012d6eb7208f578857 (patch) | |
tree | 6ce914f772186af208055e418e5c13b2a77bbf36 /editor/editor_audio_buses.h | |
parent | a511a26ad82bf70ed00ab34a3201ec5c6049387f (diff) | |
download | redot-engine-57dcc831522079c7bee14b012d6eb7208f578857.tar.gz |
Rename the TextureProgress node to TextureProgressBar
Advantages:
- When searching for "progressbar", you'll see both nodes in the
search results.
- More consistent with Button/TextureButton.
Diffstat (limited to 'editor/editor_audio_buses.h')
-rw-r--r-- | editor/editor_audio_buses.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editor/editor_audio_buses.h b/editor/editor_audio_buses.h index f72541100d..b5f2f5af81 100644 --- a/editor/editor_audio_buses.h +++ b/editor/editor_audio_buses.h @@ -43,7 +43,7 @@ #include "scene/gui/panel_container.h" #include "scene/gui/scroll_container.h" #include "scene/gui/slider.h" -#include "scene/gui/texture_progress.h" +#include "scene/gui/texture_progress_bar.h" #include "scene/gui/texture_rect.h" #include "scene/gui/tree.h" @@ -66,8 +66,8 @@ class EditorAudioBus : public PanelContainer { float peak_l = 0; float peak_r = 0; - TextureProgress *vu_l = nullptr; - TextureProgress *vu_r = nullptr; + TextureProgressBar *vu_l = nullptr; + TextureProgressBar *vu_r = nullptr; } channel[CHANNELS_MAX]; OptionButton *send; |