diff options
author | David Robillard <d@drobilla.net> | 2011-06-09 03:41:17 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-06-09 03:41:17 +0000 |
commit | fc57e53e2554aa1a654d66bb7b97a8738bb77fb5 (patch) | |
tree | 0376956f6b461dad39ce4e3acb4ea8a62b3f7dda /src/JackDriver.cpp | |
parent | 91cdc941af88e8ba6e19673eb17825233db2218c (diff) | |
download | patchage-fc57e53e2554aa1a654d66bb7b97a8738bb77fb5.tar.gz patchage-fc57e53e2554aa1a654d66bb7b97a8738bb77fb5.tar.bz2 patchage-fc57e53e2554aa1a654d66bb7b97a8738bb77fb5.zip |
Automatically resize modules at update time as necessary.
This avoids the huge multiple resize performance problems of the past without requiring the user to manually resize modules.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@3375 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/JackDriver.cpp')
-rw-r--r-- | src/JackDriver.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/JackDriver.cpp b/src/JackDriver.cpp index 27cab50..9624692 100644 --- a/src/JackDriver.cpp +++ b/src/JackDriver.cpp @@ -161,7 +161,6 @@ JackDriver::create_port_view(Patchage* patchage, PatchagePort* port = create_port(*parent, jack_port, id); port->show(); - _app->enqueue_resize(parent); return port; } @@ -271,8 +270,6 @@ JackDriver::refresh() if (!m->get_port(jack_port_short_name(port))) create_port(*m, port, PortID()); - - _app->enqueue_resize(m); } // Add all connections |