summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_rulers.cc
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2015-03-13 16:24:55 -0500
committerBen Loftis <ben@harrisonconsoles.com>2015-03-13 16:25:59 -0500
commitffd32ae5e184b42aa9f38903f146751b36b87092 (patch)
tree5a8423132b80e8a39e46900ced752635de1b472d /gtk2_ardour/editor_rulers.cc
parent94e36450d2bb7fad5f27d9313035f6b4535931b8 (diff)
Right-clicking on the Loop/Punch ruler should "Do Something".
Diffstat (limited to 'gtk2_ardour/editor_rulers.cc')
-rw-r--r--gtk2_ardour/editor_rulers.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_rulers.cc b/gtk2_ardour/editor_rulers.cc
index 1c3469da9a..0fc49f522b 100644
--- a/gtk2_ardour/editor_rulers.cc
+++ b/gtk2_ardour/editor_rulers.cc
@@ -221,7 +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)));
break;
case CdMarkerBarItem: