summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorahellquist <ahellquist@users.noreply.github.com>2015-04-18 00:17:15 +0200
committerRobin Gareus <robin@gareus.org>2015-04-21 17:38:27 +0200
commit80d8e86f1c0b41fa5cda31c9b3b8720032e2ffca (patch)
tree56f6a443d85ed66823d36f8cc337025eff82b9af
parenteafb66d00121986354b01c8367404d4c91038aac (diff)
Update editor_rulers.cc
Change ruler context actions from "Make Loop range" to "New Loop range" change ruler context actions from "Make Punch range" to "New Loop range" This to make it consistent with other ruler context actions eg. "New....."
-rw-r--r--gtk2_ardour/editor_rulers.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_rulers.cc b/gtk2_ardour/editor_rulers.cc
index 4a86aa6fad..a5b5a625f4 100644
--- a/gtk2_ardour/editor_rulers.cc
+++ b/gtk2_ardour/editor_rulers.cc
@@ -221,8 +221,8 @@ Editor::popup_ruler_menu (framepos_t where, ItemType t)
break;
case TransportMarkerBarItem:
- ruler_items.push_back (MenuElem (_("Make Loop range"), sigc::bind (sigc::mem_fun (*this, &Editor::mouse_add_new_loop), where)));
- ruler_items.push_back (MenuElem (_("Make Punch range"), sigc::bind (sigc::mem_fun (*this, &Editor::mouse_add_new_punch), where)));
+ ruler_items.push_back (MenuElem (_("New Loop range"), sigc::bind (sigc::mem_fun (*this, &Editor::mouse_add_new_loop), where)));
+ ruler_items.push_back (MenuElem (_("New Punch range"), sigc::bind (sigc::mem_fun (*this, &Editor::mouse_add_new_punch), where)));
break;
case CdMarkerBarItem: