From 1bea87e10adba7c29435d99ae519be1e7490eb3a Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Mon, 10 Aug 2015 21:16:08 +1000 Subject: [PATCH] Remove previous fix attempt at restoring state for backends with driver selection The fix does not work properly anymore for the Portaudio backend and needs fixing in another manner. It will now be temporarily back to the broken state it was in before the "fix". --- gtk2_ardour/engine_dialog.cc | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/gtk2_ardour/engine_dialog.cc b/gtk2_ardour/engine_dialog.cc index e905899872..82ca022035 100644 --- a/gtk2_ardour/engine_dialog.cc +++ b/gtk2_ardour/engine_dialog.cc @@ -1817,16 +1817,6 @@ EngineControl::set_current_state (const State& state) DEBUG_ECONTROL ("set_current_state"); PBD::Unwinder protect_ignore_changes (ignore_changes, ignore_changes + 1); backend_combo.set_active_text (state->backend); - - /* The driver popdown strings need to be populated now so that - * set_active_text will actually set a valid entry. Then - * backend_changed() will populate all the other combo's so they - * can also be set to valid entries and the state will be restored - * correctly. - */ - if (!state->driver.empty()) { - set_driver_popdown_strings (); - } driver_combo.set_active_text (state->driver); backend_changed ();