diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2009-06-02 04:36:17 +0000 |
|---|---|---|
| committer | dvlierop2 <dvlierop2@users.sourceforge.net> | 2009-06-02 04:36:17 +0000 |
| commit | 9d1365da9d6ed6312e4f034df40aa64dec35c9e0 (patch) | |
| tree | b5d6de8cc2a3293d1b8db11dfd8fd17f7d8cfa06 /src/display/snap-indicator.cpp | |
| parent | Moved whiteboard related file to POTFILES.ignore (diff) | |
| download | inkscape-9d1365da9d6ed6312e4f034df40aa64dec35c9e0.tar.gz inkscape-9d1365da9d6ed6312e4f034df40aa64dec35c9e0.zip | |
When dragging the origin of a guide along that guide, we should use constrained snapping instead of free snapping. Also make sure that we snap to paths too, not just to guides
(bzr r7973)
Diffstat (limited to 'src/display/snap-indicator.cpp')
| -rw-r--r-- | src/display/snap-indicator.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/display/snap-indicator.cpp b/src/display/snap-indicator.cpp index e73eef796..081496fd0 100644 --- a/src/display/snap-indicator.cpp +++ b/src/display/snap-indicator.cpp @@ -56,7 +56,7 @@ SnapIndicator::set_new_snaptarget(Inkscape::SnappedPoint const p) bool value = prefs->getBool("/options/snapindicator/value", true); if (value) { - // TRANSLATORS: undefined target for snapping + // TRANSLATORS: undefined target for snapping gchar *target_name = _("UNDEFINED"); switch (p.getTarget()) { case SNAPTARGET_UNDEFINED: @@ -180,6 +180,9 @@ SnapIndicator::set_new_snaptarget(Inkscape::SnappedPoint const p) case SNAPSOURCE_GUIDE: source_name = _("Guide"); break; + case SNAPSOURCE_GUIDE_ORIGIN: + source_name = _("Guide origin"); + break; case SNAPSOURCE_CONVEX_HULL_CORNER: source_name = _("Convex hull corner"); break; |
