13
0

MCP: bettetr vpot mode for pan width

git-svn-id: svn://localhost/ardour2/branches/3.0@12012 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2012-04-18 17:05:13 +00:00
parent 028727e85c
commit e9dcd14bb4

View File

@ -1046,7 +1046,7 @@ Strip::set_vpot_mode (PotMode m)
/* gain to fader, pan azi to vpot */
_fader->set_control (_route->gain_control());
if (pannable) {
_vpot->set_mode (Pot::spread);
_vpot->set_mode (Pot::dot);
_vpot->set_control (pannable->pan_azimuth_control);
}
}
@ -1067,7 +1067,7 @@ Strip::set_vpot_mode (PotMode m)
/* gain to fader, pan width to vpot */
_fader->set_control (_route->gain_control());
if (pannable) {
_vpot->set_mode (Pot::spread);
_vpot->set_mode (Pot::dot);
_vpot->set_control (pannable->pan_width_control);
}
}