From 3290fcbe34ffb66437038d63490d6f2c74542afc Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Thu, 18 Feb 2021 09:46:57 -0600 Subject: [PATCH] Update remote calls to Prefs page to reflect new layout --- gtk2_ardour/ardour_ui2.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/ardour_ui2.cc b/gtk2_ardour/ardour_ui2.cc index b549878321..e8a3ea0ff5 100644 --- a/gtk2_ardour/ardour_ui2.cc +++ b/gtk2_ardour/ardour_ui2.cc @@ -894,7 +894,7 @@ ARDOUR_UI::show_mixer_prefs () { if (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; } - show_tabbable (rc_option_editor); - rc_option_editor->set_current_page (_("Transport")); + Glib::RefPtr tact = ActionManager::get_toggle_action ("Window", "toggle-transport-masters"); + tact->set_active(); return true; }