summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-09 00:33:56 +0200
committerRobin Gareus <robin@gareus.org>2016-04-09 00:33:56 +0200
commit1bf84f3ca32bcd4b2ffa2159dc7a459b5dc6fe02 (patch)
tree77ff92efb944e8c6969074460515a9b1e0a55897
parentec0ec952623f9593a5d6aa51b72283e34dcd9428 (diff)
fix editor/mixer initial display (show_all)
-rw-r--r--gtk2_ardour/processor_box.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc
index e980cd974c..ffcaa15194 100644
--- a/gtk2_ardour/processor_box.cc
+++ b/gtk2_ardour/processor_box.cc
@@ -199,8 +199,10 @@ ProcessorEntry::ProcessorEntry (ProcessorBox* parent, boost::shared_ptr<Processo
_button.set_active (_processor->active());
- routing_icon.set_no_show_all(true);
input_icon.set_no_show_all(true);
+ routing_icon.set_no_show_all(true);
+ output_icon.set_no_show_all(true);
+ output_routing_icon.set_no_show_all(true);
_button.show ();
input_icon.hide();