summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorJabiertxof <jabier.arraiza@marker.es>2018-10-24 18:02:00 +0000
committerJabiertxof <jabier.arraiza@marker.es>2018-10-25 07:48:24 +0000
commita61d70d8ef1325f238d197b9e09858fc5f5e7684 (patch)
tree3cae6df433b5ff39ecacd786b4502eeddce09646 /src/live_effects
parentFixing coding style (diff)
downloadinkscape-a61d70d8ef1325f238d197b9e09858fc5f5e7684.tar.gz
inkscape-a61d70d8ef1325f238d197b9e09858fc5f5e7684.zip
Add fixes in review.
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/lpe-knot.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/lpe-knot.cpp b/src/live_effects/lpe-knot.cpp
index 0fd5af752..051018c43 100644
--- a/src/live_effects/lpe-knot.cpp
+++ b/src/live_effects/lpe-knot.cpp
@@ -418,7 +418,7 @@ LPEKnot::doEffect_path (Geom::PathVector const &path_in)
unsigned i0 = 0;
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
gint precision = prefs->getInt("/options/svgoutput/numericprecision");
- prefs->setInt("/options/svgoutput/numericprecision", 4); // thinc is enogught to minor diferences
+ prefs->setInt("/options/svgoutput/numericprecision", 4); // I think this is enough for minor differences
for (i0=0; i0<gpaths.size(); i0++){
if (!strcmp(sp_svg_write_path(original_pathv[comp]), sp_svg_write_path(gpaths[i0])))
break;
@@ -660,7 +660,7 @@ void LPEKnot::addKnotHolderEntities(KnotHolder *knotholder, SPItem *item)
{
KnotHolderEntity *e = new KnotHolderEntityCrossingSwitcher(this);
e->create(nullptr, item, knotholder, Inkscape::CTRL_TYPE_UNKNOWN,
- _("Drag to select a crossing, click to flip it, CTRL + click to update all crossings"));
+ _("Drag to select a crossing, click to flip it, Ctrl + click to update all crossings"));
knotholder->add(e);
};