Update Crisp for cosmic-text changes
This commit is contained in:
parent
00d840794d
commit
02e522cff1
|
@ -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));
|
||||||
|
|
||||||
|
|
|
@ -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.
|
||||||
|
|
Loading…
Reference in a new issue