make 0/KP_0 do the same thing in the mono panner as it does in the stereo panner (reset to center)

This commit is contained in:
Paul Davis 2013-03-22 20:22:46 -04:00
parent e155338aa0
commit 7a3e9032ca
1 changed files with 4 additions and 4 deletions

View File

@ -412,10 +412,6 @@ MonoPanner::on_key_press_event (GdkEventKey* ev)
step = one_degree * 5.0;
}
/* up/down control width because we consider pan position more "important"
(and thus having higher "sense" priority) than width.
*/
switch (ev->keyval) {
case GDK_Left:
pv -= step;
@ -425,6 +421,10 @@ MonoPanner::on_key_press_event (GdkEventKey* ev)
pv += step;
position_control->set_value (pv);
break;
case GDK_0:
case GDK_KP_0:
position_control->set_value (0.0);
break;
default:
return false;
}