diff options
author | David Robillard <d@drobilla.net> | 2007-07-29 21:50:22 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2007-07-29 21:50:22 +0000 |
commit | 31cef27138216b6566339bd7846a5baaf1a70c8f (patch) | |
tree | e72d162b3c75eb2c4ab1522f1e77e2e8b40278ca /src/PatchageModule.hpp | |
parent | 8ca38297f0781bb4d64914ea907848e63821618d (diff) | |
download | patchage-31cef27138216b6566339bd7846a5baaf1a70c8f.tar.gz patchage-31cef27138216b6566339bd7846a5baaf1a70c8f.tar.bz2 patchage-31cef27138216b6566339bd7846a5baaf1a70c8f.zip |
Fix splitting/joining of modules in the slowest, hackiest way possible (fix ticket 62).
git-svn-id: http://svn.drobilla.net/lad/patchage@652 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/PatchageModule.hpp')
-rw-r--r-- | src/PatchageModule.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp index 244e7bf..fe74ac2 100644 --- a/src/PatchageModule.hpp +++ b/src/PatchageModule.hpp @@ -94,13 +94,13 @@ public: void split() { assert(_type == InputOutput); _app->state_manager()->set_module_split(_name, true); - _app->queue_refresh(); + _app->refresh(); } void join() { assert(_type != InputOutput); _app->state_manager()->set_module_split(_name, false); - _app->queue_refresh(); + _app->refresh(); } virtual void store_location() { |