diff options
author | David Robillard <d@drobilla.net> | 2010-09-02 21:18:29 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-09-02 21:18:29 +0000 |
commit | f264bbdf5134e19dc928fcf701a36710efd5b3cd (patch) | |
tree | 03b6a2554d1469f0f926aea0a112a84be33070d0 /src | |
parent | 0ac76cbe796c959aa1408de5abc8eff97627b2b8 (diff) | |
download | patchage-f264bbdf5134e19dc928fcf701a36710efd5b3cd.tar.gz patchage-f264bbdf5134e19dc928fcf701a36710efd5b3cd.tar.bz2 patchage-f264bbdf5134e19dc928fcf701a36710efd5b3cd.zip |
Call FlowCanvas::Item::store_location when dragging multiple items and arranging canvas.
Don't call store_location every time modules are moved in Patchage (until drag is done).
Fix ticket #460.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@2587 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/PatchageModule.hpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/PatchageModule.hpp b/src/PatchageModule.hpp index 3490088..1092906 100644 --- a/src/PatchageModule.hpp +++ b/src/PatchageModule.hpp @@ -58,11 +58,6 @@ public: sigc::mem_fun(this, &PatchageModule::menu_disconnect_all))); } - void move(double dx, double dy) { - FlowCanvas::Module::move(dx, dy); - store_location(); - } - void load_location() { boost::shared_ptr<Canvas> canvas = _canvas.lock(); if (!canvas) |