mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Fix conversion in 41b997a90 (monitor cut, invert)
This commit is contained in:
parent
b8a7b444e2
commit
54e374f272
1 changed files with 2 additions and 2 deletions
|
|
@ -247,8 +247,8 @@ MonitorProcessor::state (bool full)
|
|||
chn_node->set_property ("id", chn);
|
||||
|
||||
// implicitly cast these to bool
|
||||
chn_node->set_property (X_("cut"), (*x)->cut == GAIN_COEFF_UNITY);
|
||||
chn_node->set_property (X_("invert"), (*x)->polarity == GAIN_COEFF_UNITY);
|
||||
chn_node->set_property (X_("cut"), (*x)->cut != GAIN_COEFF_UNITY);
|
||||
chn_node->set_property (X_("invert"), (*x)->polarity != GAIN_COEFF_UNITY);
|
||||
chn_node->set_property (X_("dim"), (*x)->dim == true);
|
||||
chn_node->set_property (X_("solo"), (*x)->soloed == true);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue