summaryrefslogtreecommitdiff
path: root/libs/gtkmm2ext/gtkmm2ext
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-02-01 01:50:49 +0000
committerCarl Hetherington <carl@carlh.net>2011-02-01 01:50:49 +0000
commit4233a54ac3bdd8475125b99a97c669f1d37d8dd6 (patch)
treeda9c7a01f090c7d38b423e841b882962ffdaaba0 /libs/gtkmm2ext/gtkmm2ext
parent636ffd7d8df8642ec6566632ac589fb03056b032 (diff)
Somewhat unconvincing visual indication that plugin inserts are splitting mono inputs to stereo.
git-svn-id: svn://localhost/ardour2/branches/3.0@8636 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/gtkmm2ext/gtkmm2ext')
-rw-r--r--libs/gtkmm2ext/gtkmm2ext/dndvbox.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libs/gtkmm2ext/gtkmm2ext/dndvbox.h b/libs/gtkmm2ext/gtkmm2ext/dndvbox.h
index c2c74e6d55..27aec2a29e 100644
--- a/libs/gtkmm2ext/gtkmm2ext/dndvbox.h
+++ b/libs/gtkmm2ext/gtkmm2ext/dndvbox.h
@@ -60,6 +60,8 @@ public:
signal_button_release_event().connect (bind (mem_fun (*this, &DnDVBox::button_release), (T *) 0));
signal_drag_motion().connect (mem_fun (*this, &DnDVBox::drag_motion));
signal_drag_leave().connect (mem_fun (*this, &DnDVBox::drag_leave));
+
+ _internal_vbox.show ();
drag_dest_set (_targets);
signal_drag_data_received().connect (mem_fun (*this, &DnDVBox::drag_data_received));
@@ -85,7 +87,7 @@ public:
_internal_vbox.pack_start (child->widget(), false, false);
_children.push_back (child);
- child->widget().show_all ();
+ child->widget().show ();
}
/** @return Children, sorted into the order that they are currently being displayed in the widget */