summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Mueller <github@johannes-mueller.org>2017-08-14 20:22:05 +0200
committerRobin Gareus <robin@gareus.org>2018-06-20 21:06:16 +0200
commit89aa17fe00036e5c85e7d9f501f6eac246490f03 (patch)
treec4c6ef05da56e569f2712f183d8ee53f07b93414
parent6da18b32b53da240b808025a2fe938a9cddaf3ba (diff)
Put input level meter before output level meter in the generic gui
This is done by relying on the fact that the generic gui orders the meters according to their port indices.
-rw-r--r--libs/plugins/a-comp.lv2/a-comp#stereo.ttl.in12
-rw-r--r--libs/plugins/a-comp.lv2/a-comp.c2
-rw-r--r--libs/plugins/a-comp.lv2/a-comp.ttl.in8
3 files changed, 11 insertions, 11 deletions
diff --git a/libs/plugins/a-comp.lv2/a-comp#stereo.ttl.in b/libs/plugins/a-comp.lv2/a-comp#stereo.ttl.in
index cb45647936..cf4b99a2bf 100644
--- a/libs/plugins/a-comp.lv2/a-comp#stereo.ttl.in
+++ b/libs/plugins/a-comp.lv2/a-comp#stereo.ttl.in
@@ -92,21 +92,21 @@
lv2:maximum 45.000000 ;
unit:unit unit:db ;
] ,
- [
+ [
a lv2:OutputPort, lv2:ControlPort ;
lv2:index 7 ;
- lv2:name "Output Level" ;
- lv2:symbol "outlevel" ;
+ lv2:name "Input Level" ;
+ lv2:symbol "inlevel" ;
lv2:default -45.000000 ;
lv2:minimum -45.000000 ;
lv2:maximum 0.000000 ;
unit:unit unit:db ;
] ,
- [
+ [
a lv2:OutputPort, lv2:ControlPort ;
lv2:index 8 ;
- lv2:name "Input Level" ;
- lv2:symbol "inlevel" ;
+ lv2:name "Output Level" ;
+ lv2:symbol "outlevel" ;
lv2:default -45.000000 ;
lv2:minimum -45.000000 ;
lv2:maximum 0.000000 ;
diff --git a/libs/plugins/a-comp.lv2/a-comp.c b/libs/plugins/a-comp.lv2/a-comp.c
index 1de5954e89..f78dda558b 100644
--- a/libs/plugins/a-comp.lv2/a-comp.c
+++ b/libs/plugins/a-comp.lv2/a-comp.c
@@ -49,8 +49,8 @@ typedef enum {
ACOMP_MAKEUP,
ACOMP_GAINR,
- ACOMP_OUTLEVEL,
ACOMP_INLEVEL,
+ ACOMP_OUTLEVEL,
ACOMP_SIDECHAIN,
ACOMP_ENABLE,
diff --git a/libs/plugins/a-comp.lv2/a-comp.ttl.in b/libs/plugins/a-comp.lv2/a-comp.ttl.in
index bbc860ee14..e8584d8978 100644
--- a/libs/plugins/a-comp.lv2/a-comp.ttl.in
+++ b/libs/plugins/a-comp.lv2/a-comp.ttl.in
@@ -95,8 +95,8 @@
[
a lv2:OutputPort, lv2:ControlPort ;
lv2:index 7 ;
- lv2:name "Output Level" ;
- lv2:symbol "outlevel" ;
+ lv2:name "Input Level" ;
+ lv2:symbol "inlevel" ;
lv2:default -45.000000 ;
lv2:minimum -45.000000 ;
lv2:maximum 0.000000 ;
@@ -105,8 +105,8 @@
[
a lv2:OutputPort, lv2:ControlPort ;
lv2:index 8 ;
- lv2:name "Input Level" ;
- lv2:symbol "inlevel" ;
+ lv2:name "Output Level" ;
+ lv2:symbol "outlevel" ;
lv2:default -45.000000 ;
lv2:minimum -45.000000 ;
lv2:maximum 0.000000 ;