From aedb93f6bc92174d5513cab939710c9b597280a6 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Fri, 23 Jul 2021 13:29:53 -0500 Subject: [PATCH] Disambiguate "Views" -> "Editor Views" In other NLE's, a View often incorporates window layout In Ardour, a View is just the zoom/scroll state of the canvas --- gtk2_ardour/editor_actions.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/editor_actions.cc b/gtk2_ardour/editor_actions.cc index affc9adbb6..a0ea7571de 100644 --- a/gtk2_ardour/editor_actions.cc +++ b/gtk2_ardour/editor_actions.cc @@ -162,7 +162,7 @@ Editor::register_actions () ActionManager::register_action (editor_menu_actions, X_("RegionEditOps"), _("Region operations")); ActionManager::register_action (editor_menu_actions, X_("RegionGainMenu"), _("Gain")); ActionManager::register_action (editor_menu_actions, X_("RulerMenu"), _("Rulers")); - ActionManager::register_action (editor_menu_actions, X_("SavedViewMenu"), _("Views")); + ActionManager::register_action (editor_menu_actions, X_("SavedViewMenu"), _("Editor Views")); ActionManager::register_action (editor_menu_actions, X_("ScrollMenu"), _("Scroll")); ActionManager::register_action (editor_menu_actions, X_("SecondaryClockMenu"), _("Secondary Clock")); ActionManager::register_action (editor_menu_actions, X_("Select"), _("Select"));