summaryrefslogtreecommitdiffstats
path: root/src/ui/tools/pencil-tool.cpp
diff options
context:
space:
mode:
authorJabier Arraiza Cenoz <jabier.arraiza@marker.es>2014-03-05 19:01:55 +0000
committerJabiertxof <jtx@jtx.marker.es>2014-03-05 19:01:55 +0000
commit1771d9ea0d5acb77af4df069680e66a9306c8b9b (patch)
tree8998af65af0544ce2a92d71b82027607483a0ea3 /src/ui/tools/pencil-tool.cpp
parentupdate to trunk (diff)
parentcompleted merging (diff)
downloadinkscape-1771d9ea0d5acb77af4df069680e66a9306c8b9b.tar.gz
inkscape-1771d9ea0d5acb77af4df069680e66a9306c8b9b.zip
Translations
(bzr r11950.1.278)
Diffstat (limited to 'src/ui/tools/pencil-tool.cpp')
-rw-r--r--src/ui/tools/pencil-tool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tools/pencil-tool.cpp b/src/ui/tools/pencil-tool.cpp
index bd50672af..1ccdee637 100644
--- a/src/ui/tools/pencil-tool.cpp
+++ b/src/ui/tools/pencil-tool.cpp
@@ -685,7 +685,7 @@ void PencilTool::_interpolate() {
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
guint mode = prefs->getInt("/tools/freehand/pencil/freehand-mode", 0);
for (int c = 0; c < n_segs; c++) {
- //spanish: si el modo es BSpline modificamos para que el trazado cree los nodos adhoc
+ // if we are in BSpline we modify the trace to create adhoc nodes
if(mode == 2){
Geom::Point BP = b[4*c+0] + (1./3)*(b[4*c+3] - b[4*c+0]);
BP = Geom::Point(BP[X] + 0.0001,BP[Y] + 0.0001);
@@ -835,7 +835,7 @@ void PencilTool::_fitAndSplit() {
this->red_curve->moveto(b[0]);
using Geom::X;
using Geom::Y;
- //spanish: si el modo es BSpline modificamos para que el trazado cree los nodos adhoc
+ // if we are in BSpline we modify the trace to create adhoc nodes
Inkscape::Preferences *prefs = Inkscape::Preferences::get();
guint mode = prefs->getInt("/tools/freehand/pencil/freehand-mode", 0);
if(mode == 2){