mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 11:46:25 +01:00
session prefs editor gets renamed as session properties
git-svn-id: svn://localhost/ardour2/branches/3.0@7223 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
dab0dacc66
commit
fcbb78b010
2 changed files with 4 additions and 2 deletions
|
|
@ -217,7 +217,7 @@ ARDOUR_UI::install_actions ()
|
||||||
ActionManager::register_action (common_actions, X_("goto-mixer"), _("Show Mixer"), sigc::mem_fun(*this, &ARDOUR_UI::goto_mixer_window));
|
ActionManager::register_action (common_actions, X_("goto-mixer"), _("Show Mixer"), sigc::mem_fun(*this, &ARDOUR_UI::goto_mixer_window));
|
||||||
ActionManager::register_action (common_actions, X_("toggle-editor-mixer-on-top"), _("Toggle Editor Mixer on Top"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_editor_mixer_on_top));
|
ActionManager::register_action (common_actions, X_("toggle-editor-mixer-on-top"), _("Toggle Editor Mixer on Top"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_editor_mixer_on_top));
|
||||||
ActionManager::register_toggle_action (common_actions, X_("ToggleRCOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_rc_options_window));
|
ActionManager::register_toggle_action (common_actions, X_("ToggleRCOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_rc_options_window));
|
||||||
ActionManager::register_toggle_action (common_actions, X_("ToggleSessionOptionsEditor"), _("Preferences"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_session_options_window));
|
ActionManager::register_toggle_action (common_actions, X_("ToggleSessionOptionsEditor"), _("Properties"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_session_options_window));
|
||||||
act = ActionManager::register_toggle_action (common_actions, X_("ToggleInspector"), _("Tracks and Busses"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_route_params_window));
|
act = ActionManager::register_toggle_action (common_actions, X_("ToggleInspector"), _("Tracks and Busses"), sigc::mem_fun(*this, &ARDOUR_UI::toggle_route_params_window));
|
||||||
ActionManager::session_sensitive_actions.push_back (act);
|
ActionManager::session_sensitive_actions.push_back (act);
|
||||||
ActionManager::session_sensitive_actions.push_back (act);
|
ActionManager::session_sensitive_actions.push_back (act);
|
||||||
|
|
|
||||||
|
|
@ -138,9 +138,11 @@ private:
|
||||||
};
|
};
|
||||||
|
|
||||||
SessionOptionEditor::SessionOptionEditor (Session* s)
|
SessionOptionEditor::SessionOptionEditor (Session* s)
|
||||||
: OptionEditor (&(s->config), _("Session Preferences"))
|
: OptionEditor (&(s->config), _("Session Properties"))
|
||||||
, _session_config (&(s->config))
|
, _session_config (&(s->config))
|
||||||
{
|
{
|
||||||
|
set_name ("SessionProperties");
|
||||||
|
|
||||||
/* SYNC */
|
/* SYNC */
|
||||||
|
|
||||||
ComboOption<uint32_t>* spf = new ComboOption<uint32_t> (
|
ComboOption<uint32_t>* spf = new ComboOption<uint32_t> (
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue