From deee47bcaea08eb94d25bc3c308c6c199b8e0708 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 1 Feb 2011 02:14:11 +0000 Subject: [PATCH] Recover send faders in the processor box lost in my previous commit. git-svn-id: svn://localhost/ardour2/branches/3.0@8637 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/processor_box.cc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index 8bf4afc1ca..ecd2319a5f 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -308,6 +308,8 @@ SendProcessorEntry::SendProcessorEntry (boost::shared_ptr s, Width w) _fader.set_controllable (_send->amp()->gain_control ()); _vbox.pack_start (_fader); + _fader.show (); + _adjustment.signal_value_changed().connect (sigc::mem_fun (*this, &SendProcessorEntry::gain_adjusted)); _send->amp()->gain_control()->Changed.connect (send_gain_connection, invalidator (*this), boost::bind (&SendProcessorEntry::show_gain, this), gui_context()); show_gain (); @@ -869,9 +871,6 @@ ProcessorBox::build_processor_menu () { processor_menu = dynamic_cast(ActionManager::get_widget("/processormenu") ); processor_menu->set_name ("ArdourContextMenu"); - - show_all_children(); - return processor_menu; }