summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-04-19 10:18:34 +0000
committerCarl Hetherington <carl@carlh.net>2011-04-19 10:18:34 +0000
commitecd188d5e6c3862484b6fc4992251c976315da8f (patch)
treeb41eba8e89e23559dd363cf431ea199810fcbb9f /gtk2_ardour
parent128980ffd6c90c1ef65bd683e29b7212bc802ac3 (diff)
Add missing ellipsis on Edit menu item.
git-svn-id: svn://localhost/ardour2/branches/3.0@9372 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_markers.cc2
1 files changed, 1 insertions, 1 deletions
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);