some fixes/improvements for track selection; add upload target to manual makefile...
[ardour.git] / gtk2_ardour / keyboard.cc
index 92dce01bb6a90fe57ab7c1ea8f402b46119862e5..a6a14ad55b23c80494781eacbfea6841333ee275 100644 (file)
@@ -35,6 +35,8 @@
 
 #include "i18n.h"
 
+using namespace PBD;
+
 #define KBD_DEBUG 1
 bool debug_keyboard = false;
 
@@ -794,6 +796,8 @@ Keyboard::modifier_state_equals (guint state, ModifierMask mask)
 Selection::Operation
 Keyboard::selection_type (guint state)
 {
+       /* note that there is no modifier for "Add" */
+
        if (modifier_state_equals (state, Shift)) {
                return Selection::Extend;
        } else if (modifier_state_equals (state, Control)) {