summaryrefslogtreecommitdiffstats
path: root/src/selection-chemistry.cpp
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
committerluz.paz <luzpaz@users.noreply.github.com>2018-01-08 21:50:51 +0000
commit202e75590f8200823ef0efd36cc0edbd1bf1edcc (patch)
tree1a18f646f7e49b0e1836efd6401793f6e9c38d68 /src/selection-chemistry.cpp
parentRestore ability to switch mode while using spray tool (is this even useful?). (diff)
downloadinkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.tar.gz
inkscape-202e75590f8200823ef0efd36cc0edbd1bf1edcc.zip
Misc. typos
Found via `codespell`
Diffstat (limited to '')
-rw-r--r--src/selection-chemistry.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp
index b18cea034..9d459f8c5 100644
--- a/src/selection-chemistry.cpp
+++ b/src/selection-chemistry.cpp
@@ -2963,11 +2963,11 @@ void ObjectSet::toMarker(bool apply)
return;
}
- // FIXME: Inverted Y coodinate
+ // FIXME: Inverted Y coordinate
Geom::Point doc_height( 0, doc->getHeight().value("px"));
// calculate the transform to be applied to objects to move them to 0,0
- Geom::Point corner( r->min()[Geom::X], r->max()[Geom::Y] ); // FIXME: Inverted Y coodinate
+ Geom::Point corner( r->min()[Geom::X], r->max()[Geom::Y] ); // FIXME: Inverted Y coordinate
Geom::Point move_p = doc_height - corner;
move_p[Geom::Y] = -move_p[Geom::Y];
Geom::Affine move = Geom::Affine(Geom::Translate(move_p));