summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-09-22 04:15:36 +0200
committerRobin Gareus <robin@gareus.org>2019-09-22 04:15:36 +0200
commit3ae46256c8bec79b59584a6ed57970f38de3406f (patch)
tree61abfe1e6eb7fddd416cd6d1e097b2c0940f87d9 /libs
parent7dc52e009f980aaf767abfb30757d3f89845a5a7 (diff)
Properly initialize BusSendEnable min/max
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/parameter_descriptor.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/ardour/parameter_descriptor.cc b/libs/ardour/parameter_descriptor.cc
index bfe86ce2f1..c86be207f2 100644
--- a/libs/ardour/parameter_descriptor.cc
+++ b/libs/ardour/parameter_descriptor.cc
@@ -59,7 +59,8 @@ ParameterDescriptor::ParameterDescriptor(const Evoral::Parameter& parameter)
normal = 1.0f;
break;
case BusSendEnable:
- normal = 1.0f;
+ upper = 1.f;
+ normal = 1.f;
toggled = true;
break;
case TrimAutomation: