summaryrefslogtreecommitdiff
path: root/gtk2_ardour/io_selector.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-02-10 02:09:46 +0000
committerCarl Hetherington <carl@carlh.net>2009-02-10 02:09:46 +0000
commitc601946bc87d503f4bda1fc2d7321d99acc9d5f7 (patch)
treeb4aaf1c026d10b89ad7836337c27714dd43976cf /gtk2_ardour/io_selector.cc
parent9fc369aa44e9c934f0f9fea7e02d812831cc7468 (diff)
Bit of a hack to make the port matrix for port inserts at least vaguely usable.
git-svn-id: svn://localhost/ardour2/branches/3.0@4516 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/io_selector.cc')
-rw-r--r--gtk2_ardour/io_selector.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk2_ardour/io_selector.cc b/gtk2_ardour/io_selector.cc
index 76892dcd3d..e868a6ad2b 100644
--- a/gtk2_ardour/io_selector.cc
+++ b/gtk2_ardour/io_selector.cc
@@ -347,6 +347,9 @@ PortInsertUI::PortInsertUI (ARDOUR::Session& sess, boost::shared_ptr<ARDOUR::Por
: input_selector (sess, pi->io(), true),
output_selector (sess, pi->io(), false)
{
+ output_selector.set_min_height_divisor (2);
+ input_selector.set_min_height_divisor (2);
+
pack_start (output_selector, true, true);
pack_start (input_selector, true, true);
}