summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-09-02 21:18:29 +0000
committerDavid Robillard <d@drobilla.net>2010-09-02 21:18:29 +0000
commitf264bbdf5134e19dc928fcf701a36710efd5b3cd (patch)
tree03b6a2554d1469f0f926aea0a112a84be33070d0 /src
parent0ac76cbe796c959aa1408de5abc8eff97627b2b8 (diff)
downloadpatchage-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.hpp5
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)