waf: fix concurrency issue with duplicate targets
[ardour.git] / gtk2_ardour / piano_roll_header.cc
index 878cbb72d876e1d815857ea7946dbe170ec27f15..8a67ec75016c0e145359ee97b3e05960eeef4e52 100644 (file)
@@ -513,17 +513,15 @@ bool
 PianoRollHeader::on_button_press_event (GdkEventButton* ev)
 {
        int note = _view.y_to_note(ev->y);
-
-       if (ev->button == 2 && ev->type == GDK_BUTTON_PRESS) {
-               if (Keyboard::no_modifiers_active (ev->state)) {
-                       SetNoteSelection (note); // EMIT SIGNAL
-                       return true;
-               }
-               return false;
-       }
-       
-       if (ev->button == 1 && ev->type == GDK_BUTTON_PRESS && note >= 0 && note < 128) {
-               
+       bool tertiary = Keyboard::modifier_state_contains (ev->state, Keyboard::TertiaryModifier);
+
+       if (ev->button == 2 && Keyboard::no_modifiers_active (ev->state)) {
+               SetNoteSelection (note); // EMIT SIGNAL
+               return true;
+       } else if (tertiary && (ev->button == 1 || ev->button == 2)) {
+               ExtendNoteSelection (note); // EMIT SIGNAL
+               return true;
+       } else if (ev->button == 1 && note >= 0 && note < 128) {
                add_modal_grab();
                _dragging = true;