This website works better with JavaScript.
Home
Help
Sign In
linuxaudio
/
new-session-manager
mirror of
https://github.com/linuxaudio/new-session-manager
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
17
Wiki
Activity
Browse Source
Mixer: Set a default upper bound on module parameters of 1 in case the module (LADSPA Plugins in particular) doesn't specify one.
tags/non-daw-v1.2.0
Jonathan Moore Liles
12 years ago
parent
ea380f00f9
commit
00a78fdb27
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
mixer/src/Module.H
+ 3
- 1
mixer/src/Module.H
View File
@@ -108,7 +108,9 @@ public:
type = LINEAR;
ranged = false;
minimum = 0;
maximum = 0;
maximum = 1; /* FIXME: totally bogus, but some
* plugins (SWH delays) don't
* provide an upper bound. */
default_value = 0.0f;
dimensions = 1;
visible = true;
Write
Preview
Loading…
Cancel
Save