Update remote calls to Prefs page to reflect new layout

This commit is contained in:
Ben Loftis 2021-02-18 09:46:57 -06:00 committed by Robin Gareus
parent e70c6560af
commit 3290fcbe34
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -894,7 +894,7 @@ ARDOUR_UI::show_mixer_prefs ()
{ {
if (rc_option_editor) { if (rc_option_editor) {
show_tabbable (rc_option_editor); show_tabbable (rc_option_editor);
rc_option_editor->set_current_page (_("Mixer")); rc_option_editor->set_current_page (_("Signal Flow"));
} }
} }
@ -919,8 +919,8 @@ ARDOUR_UI::sync_button_clicked (GdkEventButton* ev)
return false; return false;
} }
show_tabbable (rc_option_editor); Glib::RefPtr<ToggleAction> tact = ActionManager::get_toggle_action ("Window", "toggle-transport-masters");
rc_option_editor->set_current_page (_("Transport")); tact->set_active();
return true; return true;
} }