summaryrefslogtreecommitdiffstats
path: root/editor/editor_audio_buses.h
diff options
context:
space:
mode:
authorYuri Sizov <yuris@humnom.net>2023-04-03 18:01:11 +0200
committerYuri Sizov <yuris@humnom.net>2023-04-03 18:01:11 +0200
commit9b500ab53c4aff51d93a87f412f66a8dcc3bb227 (patch)
treeef8be23546a7a3ce51ec3cb67f332ae69e30daeb /editor/editor_audio_buses.h
parente4015402647d54a73103e182b7c8d4714399b71d (diff)
downloadredot-engine-9b500ab53c4aff51d93a87f412f66a8dcc3bb227.tar.gz
Fix premature theme item access in editor tools
Diffstat (limited to 'editor/editor_audio_buses.h')
-rw-r--r--editor/editor_audio_buses.h12
1 files changed, 10 insertions, 2 deletions
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<AudioNotch> notches;
+ struct ThemeCache {
+ Color notch_color;
+
+ Ref<Font> 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 {