From 992ab1a273dc07bf1ff3357051a34574b9313a86 Mon Sep 17 00:00:00 2001 From: Len Ovens Date: Sat, 4 Mar 2017 12:33:22 -0800 Subject: [PATCH] Remove space between _ and ( --- gtk2_ardour/editor_actions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_actions.cc b/gtk2_ardour/editor_actions.cc index 67786e01db..cebc39d84e 100644 --- a/gtk2_ardour/editor_actions.cc +++ b/gtk2_ardour/editor_actions.cc @@ -334,7 +334,7 @@ Editor::register_actions () reg_sens (editor_actions, "duplicate", _("Duplicate"), sigc::bind (sigc::mem_fun(*this, &Editor::duplicate_range), false)); /* Open the dialogue to duplicate selected regions multiple times */ - reg_sens (editor_actions, "multi-duplicate", _ ("Multi-Duplicate..."), + reg_sens (editor_actions, "multi-duplicate", _("Multi-Duplicate..."), sigc::bind (sigc::mem_fun (*this, &Editor::duplicate_range), true)); undo_action = reg_sens (editor_actions, "undo", S_("Command|Undo"), sigc::bind (sigc::mem_fun(*this, &Editor::undo), 1U));