diff options
author | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-10-19 19:34:35 +0300 |
---|---|---|
committer | Andrii Doroshenko (Xrayez) <xrayez@gmail.com> | 2020-10-19 19:34:35 +0300 |
commit | 9c3a33a4e8166f814d58549555e602912ee0d604 (patch) | |
tree | 9492f83cd6905e17955ad8bb7d7a676f61459ada /editor/plugins | |
parent | b9d48031e843395fd3117af5af1a40cdc5a884c0 (diff) |
Fixup `ColorRect` and `TextureRect` renames
Diffstat (limited to 'editor/plugins')
-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(); |