diff options
Diffstat (limited to 'src/PatchageEvent.cpp')
-rw-r--r-- | src/PatchageEvent.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp index 32136e3..cf53c03 100644 --- a/src/PatchageEvent.cpp +++ b/src/PatchageEvent.cpp @@ -72,9 +72,7 @@ PatchageEvent::execute(Patchage* patchage) if (driver) { PatchagePort* port = driver->create_port_view(patchage, _port_1); - if (port) - patchage->enqueue_resize(port->module()); - else + if (!port) Raul::error << "Unable to create port view: " << _port_1 << endl; } else { Raul::error << "Attempt to create port with unknown type: " << _port_1 << endl; |