1
0
Fork 0

Update Crisp for cosmic-text changes

This commit is contained in:
Robbert van der Helm 2023-01-12 19:01:22 +01:00
parent 00d840794d
commit 02e522cff1
2 changed files with 2 additions and 2 deletions

View file

@ -57,7 +57,7 @@ pub(crate) fn create(
.font_size(30.0) .font_size(30.0)
.height(Pixels(50.0)) .height(Pixels(50.0))
.child_top(Stretch(1.0)) .child_top(Stretch(1.0))
.child_bottom(Pixels(0.0)) .child_bottom(Pixels(1.0))
// Make this more or less align with the parameters column // Make this more or less align with the parameters column
.right(Pixels(67.0)); .right(Pixels(67.0));

View file

@ -39,7 +39,7 @@ const MAX_FILTER_FREQUENCY: f32 = 22_000.0;
/// This plugin essentially layers the sound with another copy of the signal ring modulated with /// This plugin essentially layers the sound with another copy of the signal ring modulated with
/// white (or filtered) noise. That other copy of the sound may have a low-pass filter applied to it /// white (or filtered) noise. That other copy of the sound may have a low-pass filter applied to it
/// since this effect just turns into literal noise at high frequencies. /// since this effect just turns into literal noise at high frequencies.
struct Crisp { pub struct Crisp {
params: Arc<CrispParams>, params: Arc<CrispParams>,
/// Needed for computing the filter coefficients. /// Needed for computing the filter coefficients.