mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
faderport: change panning dividers to give full range across very roughly 270 degrees of rotation
This commit is contained in:
parent
cb965cba16
commit
fd44adfe01
1 changed files with 2 additions and 2 deletions
|
|
@ -226,7 +226,7 @@ FaderPort::ardour_pan_azimuth (int delta)
|
|||
return;
|
||||
}
|
||||
|
||||
azimuth->set_value (azimuth->interface_to_internal (azimuth->internal_to_interface (azimuth->get_value()) + (delta / 64.0)));
|
||||
azimuth->set_value (azimuth->interface_to_internal (azimuth->internal_to_interface (azimuth->get_value()) + (delta / 24.0)));
|
||||
}
|
||||
|
||||
|
||||
|
|
@ -249,7 +249,7 @@ FaderPort::ardour_pan_width(int delta)
|
|||
return;
|
||||
}
|
||||
|
||||
width->set_value (width->interface_to_internal (width->internal_to_interface (width->get_value()) + (delta / 64.0)));
|
||||
width->set_value (width->interface_to_internal (width->internal_to_interface (width->get_value()) + (delta / 24.0)));
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue