summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
authorDoug McLain <doug@nostar.net>2007-07-07 05:04:34 +0000
committerDoug McLain <doug@nostar.net>2007-07-07 05:04:34 +0000
commitaf8acbcc8879e3e3e158a92417578152627faf3b (patch)
treea083761cbd7d91d02ab93859c6ce083743f6bb2d /gtk2_ardour/mixer_strip.cc
parent68653307e666b8daabd2931ce0731d400d947707 (diff)
more show() stuff, and replaced strip->show_all(); untill its actually finished
git-svn-id: svn://localhost/ardour2/trunk@2124 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc13
1 files changed, 10 insertions, 3 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index 6b8b256a7c..0a572fcd68 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -114,8 +114,10 @@ MixerStrip::MixerStrip (Mixer_UI& mx, Session& sess, boost::shared_ptr<Route> rt
comment_area = 0;
_width_owner = 0;
- width_button.add (*(manage (new Gtk::Image (::get_icon("strip_width")))));
- hide_button.add (*(manage (new Gtk::Image (::get_icon("hide")))));
+ Gtk::Image *width_icon = manage (new Gtk::Image (::get_icon("strip_width")));
+ Gtk::Image *hide_icon = manage (new Gtk::Image (::get_icon("hide")));
+ width_button.add (*width_icon);
+ hide_button.add (*hide_icon);
input_label.set_text (_("Input"));
input_button.add (input_label);
@@ -355,7 +357,10 @@ MixerStrip::MixerStrip (Mixer_UI& mx, Session& sess, boost::shared_ptr<Route> rt
add_events (Gdk::BUTTON_RELEASE_MASK);
whvbox->show();
-
+ hide_icon->show();
+ width_icon->show();
+
+ pre_processor_box.show();
hide_button.show();
width_button.show();
width_hide_box.show();
@@ -381,6 +386,8 @@ MixerStrip::MixerStrip (Mixer_UI& mx, Session& sess, boost::shared_ptr<Route> rt
speed_spinner.show();
speed_label.show();
speed_frame.show();
+
+ show();
}
MixerStrip::~MixerStrip ()