summaryrefslogtreecommitdiffstats
path: root/src/gui/SubgraphModule.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-07-29 22:20:01 -0400
committerDavid Robillard <d@drobilla.net>2016-07-29 22:20:01 -0400
commitd035a293b7e4555597bcf5940e8a98f278a2143e (patch)
tree3bc0443934f0c7bb8efdccf90d114d4ab8a2063c /src/gui/SubgraphModule.cpp
parent50a6edb088ead6d8f6287aeca55e4d704add61a2 (diff)
downloadingen-d035a293b7e4555597bcf5940e8a98f278a2143e.tar.gz
ingen-d035a293b7e4555597bcf5940e8a98f278a2143e.tar.bz2
ingen-d035a293b7e4555597bcf5940e8a98f278a2143e.zip
Use more terse patch:Put for canvas positions
Fix the semantics of PUT events for existing objects to match the documentation.
Diffstat (limited to 'src/gui/SubgraphModule.cpp')
-rw-r--r--src/gui/SubgraphModule.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/gui/SubgraphModule.cpp b/src/gui/SubgraphModule.cpp
index 395779cf..1dc4fe49 100644
--- a/src/gui/SubgraphModule.cpp
+++ b/src/gui/SubgraphModule.cpp
@@ -70,17 +70,10 @@ SubgraphModule::store_location(double ax, double ay)
if (x != _block->get_property(uris.ingen_canvasX) ||
y != _block->get_property(uris.ingen_canvasY))
{
- Resource::Properties remove;
- remove.insert(make_pair(uris.ingen_canvasX,
- Resource::Property(uris.patch_wildcard)));
- remove.insert(make_pair(uris.ingen_canvasY,
- Resource::Property(uris.patch_wildcard)));
- Resource::Properties add;
- add.insert(make_pair(uris.ingen_canvasX,
- Resource::Property(x, Resource::Graph::EXTERNAL)));
- add.insert(make_pair(uris.ingen_canvasY,
- Resource::Property(y, Resource::Graph::EXTERNAL)));
- app().interface()->delta(_block->uri(), remove, add);
+ app().interface()->put(
+ _graph->uri(),
+ {{uris.ingen_canvasX, Resource::Property(x, Resource::Graph::EXTERNAL)},
+ {uris.ingen_canvasY, Resource::Property(y, Resource::Graph::EXTERNAL)}});
}
}