diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2009-04-24 20:31:23 +0000 |
|---|---|---|
| committer | dvlierop2 <dvlierop2@users.sourceforge.net> | 2009-04-24 20:31:23 +0000 |
| commit | ba5a49daeda8a7479226be6f01a1a94de849e7c4 (patch) | |
| tree | 23334a19a4976463641f439b2c73a7d53d019d47 /src/sp-item.cpp | |
| parent | * [INTL: sk] Slovak translation update (trunk) (diff) | |
| download | inkscape-ba5a49daeda8a7479226be6f01a1a94de849e7c4.tar.gz inkscape-ba5a49daeda8a7479226be6f01a1a94de849e7c4.zip | |
Two minor snapping fixes
(bzr r7770)
Diffstat (limited to '')
| -rw-r--r-- | src/sp-item.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sp-item.cpp b/src/sp-item.cpp index 996804cd3..ff3952c25 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -974,7 +974,7 @@ void sp_item_snappoints(SPItem const *item, bool const target, SnapPointsWithTyp // Get the snappoints at the item's center if (snapprefs != NULL && snapprefs->getIncludeItemCenter()) { - p.push_back(std::make_pair(item->getCenter(), target ? int(Inkscape::SNAPTARGET_OBJECT_MIDPOINT) : int(Inkscape::SNAPSOURCE_OBJECT_MIDPOINT))); + p.push_back(std::make_pair(item->getCenter(), target ? int(Inkscape::SNAPTARGET_ROTATION_CENTER) : int(Inkscape::SNAPSOURCE_ROTATION_CENTER))); } // Get the snappoints of clipping paths and mask, if any |
