mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-12 01:26:31 +01:00
Fix MCP send display value scaling.
This commit is contained in:
parent
2d03db51cd
commit
548989fc75
1 changed files with 2 additions and 2 deletions
|
|
@ -483,11 +483,11 @@ Strip::notify_processor_changed (bool force_update)
|
||||||
if (control == _fader) {
|
if (control == _fader) {
|
||||||
if (!_fader->in_use()) {
|
if (!_fader->in_use()) {
|
||||||
_surface->write (_fader->set_position (normalized_position));
|
_surface->write (_fader->set_position (normalized_position));
|
||||||
queue_parameter_display (SendAutomation, normalized_position);
|
queue_parameter_display (SendAutomation, gain_coefficient);
|
||||||
}
|
}
|
||||||
} else if (control == _vpot) {
|
} else if (control == _vpot) {
|
||||||
_surface->write (_vpot->set (normalized_position, true, Pot::dot));
|
_surface->write (_vpot->set (normalized_position, true, Pot::dot));
|
||||||
queue_parameter_display (SendAutomation, normalized_position);
|
queue_parameter_display (SendAutomation, gain_coefficient);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue