summaryrefslogtreecommitdiff
path: root/gtk2_ardour/audio_time_axis.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/audio_time_axis.cc')
-rw-r--r--gtk2_ardour/audio_time_axis.cc16
1 files changed, 16 insertions, 0 deletions
diff --git a/gtk2_ardour/audio_time_axis.cc b/gtk2_ardour/audio_time_axis.cc
index 35033c3991..5cfe3500db 100644
--- a/gtk2_ardour/audio_time_axis.cc
+++ b/gtk2_ardour/audio_time_axis.cc
@@ -477,3 +477,19 @@ AudioTimeAxisView::add_processor_to_subplugin_menu (boost::weak_ptr<Processor> w
RouteTimeAxisView::add_processor_to_subplugin_menu (wp);
}
}
+
+void
+AudioTimeAxisView::enter_internal_edit_mode ()
+{
+ if (audio_view()) {
+ audio_view()->enter_internal_edit_mode ();
+ }
+}
+
+void
+AudioTimeAxisView::leave_internal_edit_mode ()
+{
+ if (audio_view()) {
+ audio_view()->leave_internal_edit_mode ();
+ }
+}