This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Do not use `getDefaultValue` for JUCE plugins
Signed-off-by: falkTX <falktx@falktx.com>
pull/1775/head
falkTX
1 year ago
parent
f1a30531b9
commit
6258d69589
Signed by:
falkTX
<falktx@falktx.com>
GPG Key ID:
CDBAA37ABC74FBA0
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
source/backend/plugin/CarlaPluginJuce.cpp
+ 3
- 1
source/backend/plugin/CarlaPluginJuce.cpp
View File
@@ -834,7 +834,9 @@ public:
}
}
def = parameter->getDefaultValue();
// this gives wrong values!
// def = parameter->getDefaultValue();
def = parameter->getValue();
if (def < min)
def = min;
Write
Preview
Loading…
Cancel
Save