mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 23:46:20 +01:00
triggerbox: allow-patch-changes should use DIRECT_SET
This commit is contained in:
parent
1a3b82a12e
commit
ca94b63a55
1 changed files with 1 additions and 21 deletions
|
|
@ -529,6 +529,7 @@ Trigger::name () const \
|
|||
TRIGGER_DIRECT_SET_CONST_REF (name, std::string)
|
||||
TRIGGER_DIRECT_SET (color, color_t)
|
||||
TRIGGER_DIRECT_SET (gain, gain_t)
|
||||
TRIGGER_DIRECT_SET (allow_patch_changes, bool)
|
||||
|
||||
void
|
||||
Trigger::set_ui (void* p)
|
||||
|
|
@ -536,27 +537,6 @@ Trigger::set_ui (void* p)
|
|||
_ui = p;
|
||||
}
|
||||
|
||||
bool
|
||||
Trigger::allow_patch_changes () const
|
||||
{
|
||||
return _allow_patch_changes;
|
||||
}
|
||||
|
||||
void
|
||||
Trigger::set_allow_patch_changes (bool yn)
|
||||
{
|
||||
if (_box.data_type() != DataType::MIDI) {
|
||||
return;
|
||||
}
|
||||
if (_allow_patch_changes == yn) {
|
||||
return;
|
||||
}
|
||||
|
||||
_allow_patch_changes = yn;
|
||||
send_property_change (Properties::allow_patch_changes);
|
||||
_box.session().set_dirty();
|
||||
}
|
||||
|
||||
void
|
||||
Trigger::bang ()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue