From ecd188d5e6c3862484b6fc4992251c976315da8f Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 19 Apr 2011 10:18:34 +0000 Subject: [PATCH] Add missing ellipsis on Edit menu item. git-svn-id: svn://localhost/ardour2/branches/3.0@9372 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor_markers.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_markers.cc b/gtk2_ardour/editor_markers.cc index 3000fb07ef..8b4b2b39bb 100644 --- a/gtk2_ardour/editor_markers.cc +++ b/gtk2_ardour/editor_markers.cc @@ -909,7 +909,7 @@ Editor::build_tempo_or_meter_marker_menu (bool can_remove) MenuList& items = tempo_or_meter_marker_menu->items(); tempo_or_meter_marker_menu->set_name ("ArdourContextMenu"); - items.push_back (MenuElem (_("Edit"), sigc::mem_fun(*this, &Editor::marker_menu_edit))); + items.push_back (MenuElem (_("Edit..."), sigc::mem_fun(*this, &Editor::marker_menu_edit))); items.push_back (MenuElem (_("Remove"), sigc::mem_fun(*this, &Editor::marker_menu_remove))); items.back().set_sensitive (can_remove);