From 9b500ab53c4aff51d93a87f412f66a8dcc3bb227 Mon Sep 17 00:00:00 2001 From: Yuri Sizov Date: Mon, 3 Apr 2023 18:01:11 +0200 Subject: Fix premature theme item access in editor tools --- editor/editor_audio_buses.h | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'editor/editor_audio_buses.h') diff --git a/editor/editor_audio_buses.h b/editor/editor_audio_buses.h index 9ff5afac66..51f858dd11 100644 --- a/editor/editor_audio_buses.h +++ b/editor/editor_audio_buses.h @@ -244,23 +244,31 @@ private: List notches; + struct ThemeCache { + Color notch_color; + + Ref font; + int font_size = 0; + } theme_cache; + public: const float line_length = 5.0f; const float label_space = 2.0f; const float btm_padding = 9.0f; const float top_padding = 5.0f; - Color notch_color; void add_notch(float p_normalized_offset, float p_db_value, bool p_render_value = false); Size2 get_minimum_size() const override; private: + virtual void _update_theme_item_cache() override; + static void _bind_methods(); void _notification(int p_what); void _draw_audio_notches(); public: - EditorAudioMeterNotches(); + EditorAudioMeterNotches() {} }; class AudioBusesEditorPlugin : public EditorPlugin { -- cgit v1.2.3