mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-24 07:27:44 +01:00
[Summary] Fixed bug #45206 "Numeric Fader position indicator allows to input incorrect values"
[Feature reviewed] MKosharnyy [Reviewed] YPozdnyakov
This commit is contained in:
parent
b84591302f
commit
e103e04ec2
1 changed files with 1 additions and 0 deletions
|
|
@ -432,6 +432,7 @@ GainMeter::gain_activated ()
|
|||
/* clamp to displayable values */
|
||||
if (_data_type == DataType::AUDIO) {
|
||||
f = min (f, 6.0f);
|
||||
f = max (f, -120.0f);
|
||||
|
||||
if (_route && _route->amp() == _amp) {
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue