mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 14:00:47 +02:00
Add drag to reorder fx
This commit is contained in:
parent
2777438436
commit
8a793ba5b4
7 changed files with 179 additions and 55 deletions
|
|
@ -635,6 +635,7 @@ public:
|
|||
: gin::ParamBox ("Gate"), proc (proc_)
|
||||
{
|
||||
setName ("gate");
|
||||
getProperties().set ("fxId", fxGate);
|
||||
|
||||
addEnable (proc.gateParams.enable);
|
||||
|
||||
|
|
@ -659,6 +660,7 @@ public:
|
|||
: gin::ParamBox ("Chorus"), proc (proc_)
|
||||
{
|
||||
setName ("chorus");
|
||||
getProperties().set ("fxId", fxChorus);
|
||||
|
||||
addEnable (proc.chorusParams.enable);
|
||||
|
||||
|
|
@ -681,6 +683,7 @@ public:
|
|||
: gin::ParamBox ("Distort"), proc (proc_)
|
||||
{
|
||||
setName ("distort");
|
||||
getProperties().set ("fxId", fxDistort);
|
||||
|
||||
addEnable (proc.distortionParams.enable);
|
||||
|
||||
|
|
@ -698,6 +701,7 @@ public:
|
|||
: gin::ParamBox ("Delay"), proc (proc_)
|
||||
{
|
||||
setName ("delay");
|
||||
getProperties().set ("fxId", fxDelay);
|
||||
|
||||
addEnable (proc.delayParams.enable);
|
||||
|
||||
|
|
@ -735,6 +739,7 @@ public:
|
|||
: gin::ParamBox ("Reverb"), proc (proc_)
|
||||
{
|
||||
setName ("reverb");
|
||||
getProperties().set ("fxId", fxReverb);
|
||||
|
||||
addEnable (proc.reverbParams.enable);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue