Improvements to the port matrix (I think). Sizing of the cairo section should be better. Clicking on nodes performs port connects / disconnects.

git-svn-id: svn://localhost/ardour2/branches/3.0@4402 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2009-01-13 01:15:19 +00:00
parent 3b96ad2a97
commit 954e1a6e79
9 changed files with 261 additions and 415 deletions

View file

@ -321,13 +321,13 @@ RouteParams_UI::setup_io_frames()
// input
_input_iosel = new IOSelector (*session, _route, true);
_input_iosel->redisplay ();
_input_iosel->setup ();
input_frame.add (*_input_iosel);
input_frame.show_all();
// output
_output_iosel = new IOSelector (*session, _route, false);
_output_iosel->redisplay ();
_output_iosel->setup ();
output_frame.add (*_output_iosel);
output_frame.show_all();
}