diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index 66ec9b6b8f..60090ee81a 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -885,9 +885,15 @@ Editor::marker_context_menu (GdkEventButton* ev, ArdourCanvas::Item* item) abort(); /*NOTREACHED*/ } + if (marker->type() == ArdourMarker::RegionCue) { + /* no context menu for these puppies */ + return; + } + bool is_start; Location * loc = find_location_from_marker (marker, is_start); + if (loc == transport_loop_location() || loc == transport_punch_location() || loc->is_session_range ()) { build_range_marker_menu (loc, loc == transport_loop_location() || loc == transport_punch_location(), loc->is_session_range());