fix pre-fader insert mute.
This commit is contained in:
@@ -64,6 +64,8 @@ class LIBARDOUR_API PortInsert : public IOProcessor
|
||||
void activate ();
|
||||
void deactivate ();
|
||||
|
||||
void set_pre_fader (bool);
|
||||
|
||||
uint32_t bit_slot() const { return _bitslot; }
|
||||
|
||||
void start_latency_detection ();
|
||||
|
||||
@@ -107,7 +107,7 @@ class LIBARDOUR_API Processor : public SessionObject, public Automatable, public
|
||||
XMLNode& get_state (void);
|
||||
int set_state (const XMLNode&, int version);
|
||||
|
||||
void set_pre_fader (bool);
|
||||
virtual void set_pre_fader (bool);
|
||||
|
||||
PBD::Signal0<void> ActiveChanged;
|
||||
PBD::Signal2<void,ChanCount,ChanCount> ConfigurationChanged;
|
||||
|
||||
@@ -59,6 +59,13 @@ PortInsert::~PortInsert ()
|
||||
delete _mtdm;
|
||||
}
|
||||
|
||||
void
|
||||
PortInsert::set_pre_fader (bool p)
|
||||
{
|
||||
Processor::set_pre_fader (p);
|
||||
_out->set_pre_fader (p);
|
||||
}
|
||||
|
||||
void
|
||||
PortInsert::start_latency_detection ()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user