summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-09 01:52:27 +0000
committerLiam P. White <inkscapebronyat-signgmaildotcom>2014-03-09 01:52:27 +0000
commitfd36e8d406b5ca3bfdc575a949351c6ae4a45c57 (patch)
tree59802ea375f58befb9aded43193b1de56c6dda42 /src/live_effects/effect.cpp
parentStart cleanup for merge into trunk (diff)
downloadinkscape-fd36e8d406b5ca3bfdc575a949351c6ae4a45c57.tar.gz
inkscape-fd36e8d406b5ca3bfdc575a949351c6ae4a45c57.zip
Remove all trace of the Tags dialog
Fixed Attach Path and Fill Between Many LPEs Enabled Gradient Meshes (bzr r13090.1.21)
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index 2ffff153c..17b229352 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -47,7 +47,7 @@
#include "live_effects/lpe-extrude.h"
#include "live_effects/lpe-powerstroke.h"
#include "live_effects/lpe-clone-original.h"
-//#include "live_effects/lpe-attach-path.h"
+#include "live_effects/lpe-attach-path.h"
#include "live_effects/lpe-fill-between-strokes.h"
#include "live_effects/lpe-fill-between-many.h"
#include "live_effects/lpe-ellipse_5pts.h"
@@ -130,7 +130,7 @@ const Util::EnumData<EffectType> LPETypeData[] = {
{POWERSTROKE, N_("Power stroke"), "powerstroke"},
{CLONE_ORIGINAL, N_("Clone original path"), "clone_original"},
/* Ponyscape */
-// {ATTACH_PATH, N_("Attach path"), "attach_path"},
+ {ATTACH_PATH, N_("Attach path"), "attach_path"},
{FILL_BETWEEN_STROKES, N_("Fill between strokes"), "fill_between_strokes"},
{FILL_BETWEEN_MANY, N_("Fill between many"), "fill_between_many"},
{ELLIPSE_5PTS, N_("Ellipse by 5 points"), "ellipse_5pts"},
@@ -258,9 +258,9 @@ Effect::New(EffectType lpenr, LivePathEffectObject *lpeobj)
case CLONE_ORIGINAL:
neweffect = static_cast<Effect*> ( new LPECloneOriginal(lpeobj) );
break;
- /*case ATTACH_PATH:
+ case ATTACH_PATH:
neweffect = static_cast<Effect*> ( new LPEAttachPath(lpeobj) );
- break;*/
+ break;
case FILL_BETWEEN_STROKES:
neweffect = static_cast<Effect*> ( new LPEFillBetweenStrokes(lpeobj) );
break;