From e7d4f10e0d6698db76a0cb1be7f9e45fec23a0d6 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Wed, 29 May 2024 23:56:35 +0200 Subject: [PATCH] Fix adding section markers with ctrl+click --- gtk2_ardour/editor_mouse.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_mouse.cc b/gtk2_ardour/editor_mouse.cc index 8ad37b864c..e2c1503209 100644 --- a/gtk2_ardour/editor_mouse.cc +++ b/gtk2_ardour/editor_mouse.cc @@ -1800,7 +1800,7 @@ Editor::button_release_handler (ArdourCanvas::Item* item, GdkEvent* event, ItemT case SectionMarkerBarItem: if (!_dragging_playhead && Keyboard::modifier_state_equals (event->button.state, Keyboard::PrimaryModifier)) { snap_to_with_modifier (where, event, Temporal::RoundNearest, SnapToGrid_Scaled); - add_location_mark (where, Location::IsSection); + add_location_mark (where, Location::Flags (Location::IsMark | Location::IsSection)); } return true;