Various fixups to bundle manager. Add a separator between the benign and more serious menu options on the port matrix context menu. Finally (maybe) fix port matrix sizing issues relatively nicely.

git-svn-id: svn://localhost/ardour2/branches/3.0@5409 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-07-22 01:28:31 +00:00
parent 7186593442
commit 272cad6241
14 changed files with 80 additions and 115 deletions

View file

@ -33,7 +33,7 @@ using namespace std;
using namespace ARDOUR;
using namespace PBD;
ReturnUI::ReturnUI (boost::shared_ptr<Return> r, Session& se)
ReturnUI::ReturnUI (Gtk::Window* parent, boost::shared_ptr<Return> r, Session& se)
: _return (r)
, _session (se)
, _gpm (se)
@ -48,7 +48,7 @@ ReturnUI::ReturnUI (boost::shared_ptr<Return> r, Session& se)
_vbox.pack_start (_hbox, false, false, false);
io = manage (new IOSelector (se, r->output()));
io = manage (new IOSelector (parent, se, r->output()));
pack_start (_vbox, false, false);
@ -101,7 +101,7 @@ ReturnUI::fast_update ()
ReturnUIWindow::ReturnUIWindow (boost::shared_ptr<Return> s, Session& ss)
: ArdourDialog (string("Ardour: return ") + s->name())
{
ui = new ReturnUI (s, ss);
ui = new ReturnUI (this, s, ss);
hpacker.pack_start (*ui, true, true);