summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_params_ui.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2009-01-13 01:15:19 +0000
committerCarl Hetherington <carl@carlh.net>2009-01-13 01:15:19 +0000
commit954e1a6e795a5a53865f9278105579f00143cdb1 (patch)
tree14e6d690c227fdab1506b37573df680ae240bb12 /gtk2_ardour/route_params_ui.cc
parent3b96ad2a9759feaf2d3b2c676630c12bbbdfbaae (diff)
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
Diffstat (limited to 'gtk2_ardour/route_params_ui.cc')
-rw-r--r--gtk2_ardour/route_params_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/route_params_ui.cc b/gtk2_ardour/route_params_ui.cc
index 00a4858c42..670635fb4d 100644
--- a/gtk2_ardour/route_params_ui.cc
+++ b/gtk2_ardour/route_params_ui.cc
@@ -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();
}