summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorLen Ovens <len@ovenwerks.net>2017-05-09 11:52:21 -0700
committerLen Ovens <len@ovenwerks.net>2017-05-09 11:52:21 -0700
commit155401b8754b9bcdb9d5fa95817d65cb00af109e (patch)
tree5adef1eb406e132278f0c0c7391632e1e5d887c2 /libs
parentfe5a778535f4edd42cdd5f9d3e93ce930f42216f (diff)
OSC: removed letter automation modes to not conflict with feedback
Diffstat (limited to 'libs')
-rw-r--r--libs/surfaces/osc/osc.cc16
1 files changed, 0 insertions, 16 deletions
diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc
index 6e08baa224..61e1828450 100644
--- a/libs/surfaces/osc/osc.cc
+++ b/libs/surfaces/osc/osc.cc
@@ -2218,34 +2218,18 @@ OSC::set_automation (const char *path, size_t len, lo_arg **argv, int argc, lo_m
strp->gain_control()->set_automation_state (ARDOUR::AutoState::Off);
ret = 0;
break;
- case 'm':
- strp->gain_control()->set_automation_state (ARDOUR::AutoState::Off);
- ret = 0;
- break;
case 1:
strp->gain_control()->set_automation_state (ARDOUR::AutoState::Play);
ret = 0;
break;
- case 'p':
- strp->gain_control()->set_automation_state (ARDOUR::AutoState::Play);
- ret = 0;
- break;
case 2:
strp->gain_control()->set_automation_state (ARDOUR::AutoState::Write);
ret = 0;
break;
- case 'w':
- strp->gain_control()->set_automation_state (ARDOUR::AutoState::Write);
- ret = 0;
- break;
case 3:
strp->gain_control()->set_automation_state (ARDOUR::AutoState::Touch);
ret = 0;
break;
- case 't':
- strp->gain_control()->set_automation_state (ARDOUR::AutoState::Touch);
- ret = 0;
- break;
default:
break;
}