1
0
Fork 0

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.
This commit is contained in:
Robbert van der Helm 2022-07-24 17:13:09 +02:00
parent 0b1d9b60db
commit 126cf3b141

View file

@ -87,6 +87,17 @@ pub(crate) fn create(
.bottom(Pixels(-10.0)); .bottom(Pixels(-10.0));
GenericUi::new(cx, Data::params.map(|p| p.threshold.clone())); 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) .width(RIGHT_COLUMN_WIDTH)
.height(Auto); .height(Auto);