diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2010-03-03 00:10:54 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2010-03-03 00:10:54 +0000 |
| commit | 7f5277e2c7722d2375fc7108f8d3b796f26aaccd (patch) | |
| tree | 033ebc6907cd72103744f248f3661a220baf2d1a /src/ui/tool/selectable-control-point.cpp | |
| parent | Implement a preference that determines whether deleting nodes (diff) | |
| download | inkscape-7f5277e2c7722d2375fc7108f8d3b796f26aaccd.tar.gz inkscape-7f5277e2c7722d2375fc7108f8d3b796f26aaccd.zip | |
Node tool: implement sculpting
(bzr r9131)
Diffstat (limited to 'src/ui/tool/selectable-control-point.cpp')
| -rw-r--r-- | src/ui/tool/selectable-control-point.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tool/selectable-control-point.cpp b/src/ui/tool/selectable-control-point.cpp index 1835f0008..76028dd82 100644 --- a/src/ui/tool/selectable-control-point.cpp +++ b/src/ui/tool/selectable-control-point.cpp @@ -59,13 +59,13 @@ bool SelectableControlPoint::grabbed(GdkEventMotion *) if (!selected()) { _takeSelection(); } - _selection._pointGrabbed(); + _selection._pointGrabbed(this); return false; } void SelectableControlPoint::dragged(Geom::Point &new_pos, GdkEventMotion *event) { - _selection._pointDragged(position(), new_pos, event); + _selection._pointDragged(new_pos, event); } void SelectableControlPoint::ungrabbed(GdkEventButton *) |
