make 0/KP_0 do the same thing in the mono panner as it does in the stereo panner...
authorPaul Davis <paul@linuxaudiosystems.com>
Sat, 23 Mar 2013 00:22:46 +0000 (20:22 -0400)
committerPaul Davis <paul@linuxaudiosystems.com>
Sat, 23 Mar 2013 00:22:46 +0000 (20:22 -0400)
gtk2_ardour/mono_panner.cc

index 37078b8d04a6ed306db0f3be89b71dd6334fecf2..daec1eede1c8f8bcc5c04681885637dabd03b414 100644 (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;
         }