diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2007-09-15 08:19:07 +0000 |
|---|---|---|
| committer | dvlierop2 <dvlierop2@users.sourceforge.net> | 2007-09-15 08:19:07 +0000 |
| commit | 18bccf196727b9f6726f487e4d021a8b0801a9b7 (patch) | |
| tree | 49afb3526a085d14b4d83a64501cabb677f755d0 /src/sp-item-group.cpp | |
| parent | r16583@tres: ted | 2007-09-14 09:15:49 -0700 (diff) | |
| download | inkscape-18bccf196727b9f6726f487e4d021a8b0801a9b7.tar.gz inkscape-18bccf196727b9f6726f487e4d021a8b0801a9b7.zip | |
avoid code duplication, i.e. use sp_item_snappoints in the object-snapper.cpp
(bzr r3752)
Diffstat (limited to 'src/sp-item-group.cpp')
| -rw-r--r-- | src/sp-item-group.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-item-group.cpp b/src/sp-item-group.cpp index f43f4ded9..f1035e9ee 100644 --- a/src/sp-item-group.cpp +++ b/src/sp-item-group.cpp @@ -301,7 +301,7 @@ static void sp_group_snappoints (SPItem const *item, SnapPointsIter p) if (SP_IS_ITEM(o) && !SP_IS_PATH(o)) { // getSnapPoints() and sp_group_snappoints are only being used in the selector tool, // which should not snap path nodes. Only the node tool should snap those. - sp_item_snappoints(SP_ITEM(o), p); + sp_item_snappoints(SP_ITEM(o), false, p); } } } |
