From 126cf3b141992aef4ff9b5da8977ce4d58d7d1f8 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 24 Jul 2022 17:13:09 +0200 Subject: [PATCH] Add a disclaimer to the GUI Because there's a good chance things will change later and patches may not sound exactly the same anymore. --- plugins/spectral_compressor/src/editor.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/plugins/spectral_compressor/src/editor.rs b/plugins/spectral_compressor/src/editor.rs index 2504ae7f..6f5cf4d4 100644 --- a/plugins/spectral_compressor/src/editor.rs +++ b/plugins/spectral_compressor/src/editor.rs @@ -87,6 +87,17 @@ pub(crate) fn create( .bottom(Pixels(-10.0)); GenericUi::new(cx, Data::params.map(|p| p.threshold.clone())); + + Label::new( + cx, + "Parameter ranges and overal gain staging are still subject to change. If \ + you use this in a project, make sure to bounce things to audio just in \ + case they'll sound different later.", + ) + .left(Pixels(15.0)) + .right(Pixels(5.0)) + .top(Pixels(5.0)) + .width(Stretch(1.0)); }) .width(RIGHT_COLUMN_WIDTH) .height(Auto);