diff options
| author | Diederik van Lierop <mail@diedenrezi.nl> | 2012-02-14 23:08:32 +0000 |
|---|---|---|
| committer | Diederik van Lierop <mail@diedenrezi.nl> | 2012-02-14 23:08:32 +0000 |
| commit | 2f013ce44d64f518703648c6ee7c392f38a1beb7 (patch) | |
| tree | 94d7b1f7ba01dee874d3f9de72a37c5ee6000596 /src/display/snap-indicator.cpp | |
| parent | 1) Add checkboxes for perpendicular and tangential snapping to the document p... (diff) | |
| download | inkscape-2f013ce44d64f518703648c6ee7c392f38a1beb7.tar.gz inkscape-2f013ce44d64f518703648c6ee7c392f38a1beb7.zip | |
Snap to grid/guide lines perpendicularly
(bzr r10976)
Diffstat (limited to 'src/display/snap-indicator.cpp')
| -rw-r--r-- | src/display/snap-indicator.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/display/snap-indicator.cpp b/src/display/snap-indicator.cpp index ee719847f..d5b8ce07f 100644 --- a/src/display/snap-indicator.cpp +++ b/src/display/snap-indicator.cpp @@ -79,6 +79,9 @@ SnapIndicator::set_new_snaptarget(Inkscape::SnappedPoint const &p, bool pre_snap case SNAPTARGET_GRID_INTERSECTION: target_name = _("grid intersection"); break; + case SNAPTARGET_GRID_PERPENDICULAR: + target_name = _("grid line (perpendicular)"); + break; case SNAPTARGET_GUIDE: target_name = _("guide"); break; @@ -88,6 +91,9 @@ SnapIndicator::set_new_snaptarget(Inkscape::SnappedPoint const &p, bool pre_snap case SNAPTARGET_GUIDE_ORIGIN: target_name = _("guide origin"); break; + case SNAPTARGET_GUIDE_PERPENDICULAR: + target_name = _("guide (perpendicular)"); + break; case SNAPTARGET_GRID_GUIDE_INTERSECTION: target_name = _("grid-guide intersection"); break; |
