From 1a90cd90de25f441fc166d48c6216b300ccf6b98 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Fri, 29 Mar 2019 14:52:25 +0100 Subject: [PATCH] Fix action-name --- gtk2_ardour/editor.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index c441139cc0..2b50dc9a6c 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -2327,7 +2327,7 @@ Editor::set_edit_point_preference (EditPoint ep, bool force) action = "edit-at-playhead"; break; case EditAtSelectedMarker: - action = "edit-at-marker"; + action = "edit-at-selected-marker"; break; case EditAtMouse: action = "edit-at-mouse";