mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
triggerbox: minor fixes to get properties working more correctly
This commit is contained in:
parent
ef30c3dc8d
commit
542424e27d
1 changed files with 5 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ void
|
||||||
Trigger::set_use_follow (bool yn)
|
Trigger::set_use_follow (bool yn)
|
||||||
{
|
{
|
||||||
_use_follow = yn;
|
_use_follow = yn;
|
||||||
PropertyChanged (Properties::legato);
|
PropertyChanged (Properties::use_follow);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
@ -807,6 +807,10 @@ Trigger::make_property_quarks ()
|
||||||
{
|
{
|
||||||
Properties::muted.property_id = g_quark_from_static_string (X_("running"));
|
Properties::muted.property_id = g_quark_from_static_string (X_("running"));
|
||||||
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for running = %1\n", Properties::running.property_id));
|
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for running = %1\n", Properties::running.property_id));
|
||||||
|
Properties::legato.property_id = g_quark_from_static_string (X_("legato"));
|
||||||
|
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for legato = %1\n", Properties::legato.property_id));
|
||||||
|
Properties::use_follow.property_id = g_quark_from_static_string (X_("use-follow"));
|
||||||
|
DEBUG_TRACE (DEBUG::Properties, string_compose ("quark for use-follow = %1\n", Properties::use_follow.property_id));
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint64_t TriggerBox::default_triggers_per_box = 8;
|
const uint64_t TriggerBox::default_triggers_per_box = 8;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue