summaryrefslogtreecommitdiff
path: root/gtk2_ardour/bundle_manager.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/bundle_manager.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/bundle_manager.cc')
-rw-r--r--gtk2_ardour/bundle_manager.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk2_ardour/bundle_manager.cc b/gtk2_ardour/bundle_manager.cc
index 63c348decc..916413d835 100644
--- a/gtk2_ardour/bundle_manager.cc
+++ b/gtk2_ardour/bundle_manager.cc
@@ -89,14 +89,14 @@ void
BundleEditorMatrix::add_row ()
{
_bundle->add_channel ();
- redisplay ();
+ setup ();
}
void
BundleEditorMatrix::remove_row (int r)
{
_bundle->remove_channel (r);
- redisplay ();
+ setup ();
}
std::string
@@ -205,7 +205,7 @@ BundleEditor::type_changed ()
void
BundleEditor::on_map ()
{
- _matrix.redisplay ();
+ _matrix.setup ();
Window::on_map ();
}