summaryrefslogtreecommitdiff
path: root/gtk2_ardour/ardour_ui_ed.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-04-02 18:02:41 +0200
committerRobin Gareus <robin@gareus.org>2013-04-02 18:06:43 +0200
commit467b13722245633b7ccc5964ffe319187525fd2b (patch)
treec8c177aeda7d04135f9dff61451a7cb36589c221 /gtk2_ardour/ardour_ui_ed.cc
parent5a4d0fff019f1f024ffc22f661ea93b2fe989aa1 (diff)
vtl: remove video-maintenance menu
* only really relevant for testing/debugging. * the back-end functions are still used for 'normal' operation and called implicitly when opening/closing a video. * call stop_video_server() when removing a video.
Diffstat (limited to 'gtk2_ardour/ardour_ui_ed.cc')
-rw-r--r--gtk2_ardour/ardour_ui_ed.cc11
1 files changed, 0 insertions, 11 deletions
diff --git a/gtk2_ardour/ardour_ui_ed.cc b/gtk2_ardour/ardour_ui_ed.cc
index 5d6b230796..3685233efa 100644
--- a/gtk2_ardour/ardour_ui_ed.cc
+++ b/gtk2_ardour/ardour_ui_ed.cc
@@ -142,17 +142,6 @@ ARDOUR_UI::install_actions ()
act = ActionManager::register_action (main_actions, X_("ExportVideo"), _("Export To Video File"),
sigc::mem_fun (*editor, &PublicEditor::export_video));
ActionManager::session_sensitive_actions.push_back (act);
- act = ActionManager::register_action (main_actions, X_("Video"), _("Video maintenance"));
- ActionManager::session_sensitive_actions.push_back (act);
- act = ActionManager::register_action (main_actions, X_("StartVideoServer"), _("Start Video Server"),
- sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::start_video_server_menu), (Gtk::Window*) 0));
- ActionManager::session_sensitive_actions.push_back (act);
- act = ActionManager::register_action (main_actions, X_("StopVideoServer"), _("Stop Video Server"),
- sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::stop_video_server), true ));
- ActionManager::session_sensitive_actions.push_back (act);
- act = ActionManager::register_action (main_actions, X_("VideoTimelineFlushCache"), _("Reload video-files"),
- sigc::bind (sigc::mem_fun(*this, &ARDOUR_UI::flush_videotimeline_cache), false));
- ActionManager::session_sensitive_actions.push_back (act);
#endif
#ifdef WITH_CMT