From: Paul Davis Date: Mon, 10 Dec 2018 21:19:54 +0000 (-0500) Subject: remove long-lived bug that tried to make a non-existent action insensitive X-Git-Url: https://git.carlh.net/gitweb/?p=ardour.git;a=commitdiff_plain;h=a26e6fed50c1e255dac1eeb4518bab97c647ba99 remove long-lived bug that tried to make a non-existent action insensitive --- diff --git a/gtk2_ardour/ardour_ui_dialogs.cc b/gtk2_ardour/ardour_ui_dialogs.cc index a9090dbe01..287c9128b4 100644 --- a/gtk2_ardour/ardour_ui_dialogs.cc +++ b/gtk2_ardour/ardour_ui_dialogs.cc @@ -144,13 +144,6 @@ ARDOUR_UI::set_session (Session *s) ActionManager::set_sensitive (ActionManager::range_sensitive_actions, false); } - if (!_session->monitor_out()) { - Glib::RefPtr act = ActionManager::get_action (X_("options"), X_("SoloViaBus")); - if (act) { - act->set_sensitive (false); - } - } - /* allow wastebasket flush again */ Glib::RefPtr act = ActionManager::get_action (X_("Main"), X_("FlushWastebasket"));