summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_actions.cc
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-10-22 18:11:22 +0000
committerDavid Robillard <d@drobilla.net>2009-10-22 18:11:22 +0000
commit7363b3cea01bd7184386858b3da5ad460848e41f (patch)
tree0ca96d0a1a999218313a717df05516ca6ebc7014 /gtk2_ardour/editor_actions.cc
parentc19c39362db7e0e1d8f7fe4eaa4513bd3edbd6cd (diff)
Add log window to windows menu.
git-svn-id: svn://localhost/ardour2/branches/3.0@5861 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_actions.cc')
-rw-r--r--gtk2_ardour/editor_actions.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/editor_actions.cc b/gtk2_ardour/editor_actions.cc
index b750dd46f7..3a0045b6f7 100644
--- a/gtk2_ardour/editor_actions.cc
+++ b/gtk2_ardour/editor_actions.cc
@@ -571,6 +571,9 @@ Editor::register_actions ()
ActionManager::session_sensitive_actions.push_back (act);
act = ActionManager::register_action (editor_actions, "toggle-midi-connection-manager", _("MIDI Connection Manager"), bind (mem_fun (*this, &Editor::show_global_port_matrix), ARDOUR::DataType::MIDI));
ActionManager::session_sensitive_actions.push_back (act);
+ act = ActionManager::register_action (editor_actions, "toggle-log-window", _("Log"),
+ mem_fun (ARDOUR_UI::instance(), &ARDOUR_UI::toggle_errors));
+ ActionManager::session_sensitive_actions.push_back (act);
act = ActionManager::register_action (editor_actions, "tab-to-transient-forwards", _("Move Forward to Transient"), bind (mem_fun(*this, &Editor::tab_to_transient), true));
ActionManager::session_sensitive_actions.push_back (act);