diff options
| author | Kris De Gussem <kris.degussem@gmail.com> | 2011-07-24 11:04:11 +0000 |
|---|---|---|
| committer | Kris <Kris.De.Gussem@hotmail.com> | 2011-07-24 11:04:11 +0000 |
| commit | 03e215c74bb6ff87bbabae12d82ad58d5a278bdd (patch) | |
| tree | e30d1f80874cf72dac0eb22c80ec41440fea1924 | |
| parent | Tutorials: new Greek translation of shapes tutorial by Dimitris Spingos. (diff) | |
| download | inkscape-03e215c74bb6ff87bbabae12d82ad58d5a278bdd.tar.gz inkscape-03e215c74bb6ff87bbabae12d82ad58d5a278bdd.zip | |
Fixed path update (Bug #812517)
(bzr r10499)
| -rw-r--r-- | src/extension/patheffect.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/extension/patheffect.cpp b/src/extension/patheffect.cpp index 6da310d30..e093d20d7 100644 --- a/src/extension/patheffect.cpp +++ b/src/extension/patheffect.cpp @@ -65,11 +65,9 @@ PathEffect::processPathEffects (SPDocument * doc, Inkscape::XML::Node * path) Inkscape::Extension::PathEffect * peffect; peffect = dynamic_cast<Inkscape::Extension::PathEffect *>(Inkscape::Extension::db.get(ext_id)); if (peffect != NULL) { - + peffect->processPath(doc, path, prefs); continue; } - - peffect->processPath(doc, path, prefs); } g_strfreev(patheffects); |
