Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/effects/native/phasereffect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ EffectManifest PhaserEffect::getManifest() {
manifest.setDescription(QObject::tr(
"A more complex sound effect obtained by mixing the input signal"
" with a copy passed through a series of all-pass filters."));
manifest.setEffectRampsFromDry(true);

EffectManifestParameter* depth = manifest.addParameter();
depth->setId("depth");
Expand Down
1 change: 1 addition & 0 deletions src/effects/native/reverbeffect.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ EffectManifest ReverbEffect::getManifest() {
"(NRev, KipRev) all based on the Chowning/Moorer/Schroeder "
"reverberators, which use networks of simple allpass and comb"
"delay filters.");
manifest.setEffectRampsFromDry(true);

EffectManifestParameter* decay = manifest.addParameter();
decay->setId("decay");
Expand Down