diff options
author | David Robillard <d@drobilla.net> | 2008-02-23 03:47:39 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-02-23 03:47:39 +0000 |
commit | 8efff32d97b1b578f8c42fe2db7b30cfc44ecf2f (patch) | |
tree | 0120f5c4c27040c64806a57752a71f1cddc1263c /src/PatchageEvent.cpp | |
parent | 1ca24746c2333e5fd95e364ab1c2febc421cd9a9 (diff) | |
download | patchage-8efff32d97b1b578f8c42fe2db7b30cfc44ecf2f.tar.gz patchage-8efff32d97b1b578f8c42fe2db7b30cfc44ecf2f.tar.bz2 patchage-8efff32d97b1b578f8c42fe2db7b30cfc44ecf2f.zip |
Fix drawing issues on refresh.
git-svn-id: http://svn.drobilla.net/lad/patchage@1158 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageEvent.cpp')
-rw-r--r-- | src/PatchageEvent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/PatchageEvent.cpp b/src/PatchageEvent.cpp index 5b63486..3f03208 100644 --- a/src/PatchageEvent.cpp +++ b/src/PatchageEvent.cpp @@ -62,7 +62,7 @@ PatchageEvent::execute(Patchage* patchage) assert(module); module->remove_port(port); - port->hide(); + port.reset(); // No empty modules (for now) if (module->num_ports() == 0) { |