summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/tweak-tool.cpp
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2016-12-16 12:00:49 +0000
committerJabiertxof <jtx@jtx>2016-12-16 12:00:49 +0000
commit4446366fd075fb801420da520848c774b8ac4254 (patch)
treec2fc74dabefc43fd586aaf51405bebc698d7ba94 /src/ui/tools/tweak-tool.cpp
parentFixing nested mirrors (diff)
parentFix bug where conical gradient drawn in wrong arc. (diff)
downloadinkscape-4446366fd075fb801420da520848c774b8ac4254.tar.gz
inkscape-4446366fd075fb801420da520848c774b8ac4254.zip
Update to trunk
(bzr r15295.1.23)
Diffstat (limited to 'src/ui/tools/tweak-tool.cpp')
-rw-r--r--src/ui/tools/tweak-tool.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/ui/tools/tweak-tool.cpp b/src/ui/tools/tweak-tool.cpp
index 56939cc30..ff5d623c2 100644
--- a/src/ui/tools/tweak-tool.cpp
+++ b/src/ui/tools/tweak-tool.cpp
@@ -1084,7 +1084,8 @@ sp_tweak_dilate (TweakTool *tc, Geom::Point event_p, Geom::Point p, Geom::Point
double move_force = get_move_force(tc);
double color_force = MIN(sqrt(path_force)/20.0, 1);
- auto items= selection->items();
+// auto items= selection->items();
+ std::vector<SPItem*> items(selection->items().begin(), selection->items().end());
for(auto i=items.begin();i!=items.end(); ++i){
SPItem *item = *i;