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
This commit is contained in:
Carl Hetherington 2009-02-10 02:09:46 +00:00
parent 9fc369aa44
commit c601946bc8
4 changed files with 19 additions and 4 deletions

View file

@ -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);
}