fix pre-fader insert mute.
This commit is contained in:
parent
b7b1f9a0a6
commit
42bfc63d7a
@ -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 ()
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user