summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-11-09 23:50:46 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-11-09 23:50:46 +0000
commit05a8ca8653fefcdc59e3ee1d1416829ec2712c8f (patch)
tree5d7f4a26ccae7463b72801bdcfa9e48c4a98b664 /src/live_effects/effect.cpp
parentimprove regex from DPI Switcher (diff)
downloadinkscape-05a8ca8653fefcdc59e3ee1d1416829ec2712c8f.tar.gz
inkscape-05a8ca8653fefcdc59e3ee1d1416829ec2712c8f.zip
fix a bug pointed by su_v in fillet chamfer dialog, about units
(bzr r13697)
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index fbdc78f8a..ca3b29b66 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -416,7 +416,6 @@ Effect::isNodePointSelected(Geom::Point const &nodePoint) const
for (std::vector<Geom::Point>::const_iterator i = selectedNodesPoints.begin();
i != selectedNodesPoints.end(); ++i) {
Geom::Point p = *i;
- std::cout << p << "p\n";
p[Geom::X] = Inkscape::Util::Quantity::convert(p[Geom::X], "px", *defaultUnit);
p[Geom::Y] = Inkscape::Util::Quantity::convert(p[Geom::Y], "px", *defaultUnit);
if (Geom::are_near(p, nodePoint, 0.01)) {