diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-05-27 09:58:44 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2021-05-27 10:00:49 +0200 |
commit | 534c990e418d77e648597921ed6c32f7c1fb2474 (patch) | |
tree | b4d4fb8a91aed327ce1a2de1d696e10c3a1f9bdf /editor/editor_audio_buses.h | |
parent | 364ea7f280a3f074795e542b16b1d0ec76cf6ce2 (diff) | |
download | redot-engine-534c990e418d77e648597921ed6c32f7c1fb2474.tar.gz |
Improve the audio bus editor appearance
- Use the editor font color for notch lines and text instead of a more
contrasted color.
- Reuse the editor theme's tooltip styling and apply it on theme change.
- Make the preview label display an explicit `+` sign for positive values.
- Prevent a zero value from displaying as `-0.0 dB` instead of `0.0 dB`.
- Scale notch lines on hiDPI displays.
Diffstat (limited to 'editor/editor_audio_buses.h')
-rw-r--r-- | editor/editor_audio_buses.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/editor/editor_audio_buses.h b/editor/editor_audio_buses.h index 8dfc2137ef..0fbda8ece9 100644 --- a/editor/editor_audio_buses.h +++ b/editor/editor_audio_buses.h @@ -243,10 +243,10 @@ private: List<AudioNotch> notches; public: - float line_length = 5.0f; - float label_space = 2.0f; - float btm_padding = 9.0f; - float top_padding = 5.0f; + 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); |