summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-02-01 02:14:11 +0000
committerCarl Hetherington <carl@carlh.net>2011-02-01 02:14:11 +0000
commitdeee47bcaea08eb94d25bc3c308c6c199b8e0708 (patch)
tree1ba455ce311c8bcbe8b8b1648f0e4b47dbd59331 /gtk2_ardour
parent4233a54ac3bdd8475125b99a97c669f1d37d8dd6 (diff)
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
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/processor_box.cc5
1 files 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<Send> 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<Gtk::Menu*>(ActionManager::get_widget("/processormenu") );
processor_menu->set_name ("ArdourContextMenu");
-
- show_all_children();
-
return processor_menu;
}