summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-copy_rotate.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/live_effects/lpe-copy_rotate.cpp')
-rw-r--r--src/live_effects/lpe-copy_rotate.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/live_effects/lpe-copy_rotate.cpp b/src/live_effects/lpe-copy_rotate.cpp
index 68242cc94..01c0e550c 100644
--- a/src/live_effects/lpe-copy_rotate.cpp
+++ b/src/live_effects/lpe-copy_rotate.cpp
@@ -152,7 +152,7 @@ KnotHolderEntityStartingAngle::knot_set(Geom::Point const &p, Geom::Point const
{
LPECopyRotate* lpe = dynamic_cast<LPECopyRotate *>(_effect);
- Geom::Point const s = snap_knot_position(p);
+ Geom::Point const s = snap_knot_position(p, state);
// I first suspected the minus sign to be a bug in 2geom but it is
// likely due to SVG's choice of coordinate system orientation (max)
@@ -172,7 +172,7 @@ KnotHolderEntityRotationAngle::knot_set(Geom::Point const &p, Geom::Point const
{
LPECopyRotate* lpe = dynamic_cast<LPECopyRotate *>(_effect);
- Geom::Point const s = snap_knot_position(p);
+ Geom::Point const s = snap_knot_position(p, state);
// I first suspected the minus sign to be a bug in 2geom but it is
// likely due to SVG's choice of coordinate system orientation (max)
@@ -191,14 +191,14 @@ Geom::Point
KnotHolderEntityStartingAngle::knot_get()
{
LPECopyRotate* lpe = dynamic_cast<LPECopyRotate *>(_effect);
- return snap_knot_position(lpe->start_pos);
+ return lpe->start_pos;
}
Geom::Point
KnotHolderEntityRotationAngle::knot_get()
{
LPECopyRotate* lpe = dynamic_cast<LPECopyRotate *>(_effect);
- return snap_knot_position(lpe->rot_pos);
+ return lpe->rot_pos;
}
} // namespace CR