diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-10-19 22:34:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-19 22:34:40 +0200 |
commit | 17f682226dde79b5f44c115682084892eaf23e41 (patch) | |
tree | e578ea24b6c6d860598d283c4614f7cbbd5f46bf /editor | |
parent | 858b5d29ef99084014d495c32508f3ad0fcce76b (diff) | |
parent | 9c3a33a4e8166f814d58549555e602912ee0d604 (diff) |
Merge pull request #42904 from Xrayez/rects-rename-fixup
Fixup `ColorRect` and `TextureRect` renames
Diffstat (limited to 'editor')
-rw-r--r-- | editor/plugins/audio_stream_editor_plugin.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/plugins/audio_stream_editor_plugin.cpp b/editor/plugins/audio_stream_editor_plugin.cpp index b0f65af245..231f5588a4 100644 --- a/editor/plugins/audio_stream_editor_plugin.cpp +++ b/editor/plugins/audio_stream_editor_plugin.cpp @@ -44,8 +44,8 @@ void AudioStreamEditor::_notification(int p_what) { if (p_what == NOTIFICATION_THEME_CHANGED || p_what == NOTIFICATION_ENTER_TREE) { _play_button->set_icon(get_theme_icon("MainPlay", "EditorIcons")); _stop_button->set_icon(get_theme_icon("Stop", "EditorIcons")); - _preview->set_frame_color(get_theme_color("dark_color_2", "Editor")); - set_frame_color(get_theme_color("dark_color_1", "Editor")); + _preview->set_color(get_theme_color("dark_color_2", "Editor")); + set_color(get_theme_color("dark_color_1", "Editor")); _indicator->update(); _preview->update(); |