summaryrefslogtreecommitdiffstats
path: root/src/live_effects/lpe-path_length.cpp
diff options
context:
space:
mode:
authorJabiertxof <jtx@jtx>2016-12-06 20:41:55 +0000
committerJabiertxof <jtx@jtx>2016-12-06 20:41:55 +0000
commitf799b5d6e8278c76326a6fec8da0e017eac342ec (patch)
tree91fa98cf037add28f39673d0886317c31c9e6e46 /src/live_effects/lpe-path_length.cpp
parentAdd dpiswitcher extension and option to scale legacy documents with it. (diff)
downloadinkscape-f799b5d6e8278c76326a6fec8da0e017eac342ec.tar.gz
inkscape-f799b5d6e8278c76326a6fec8da0e017eac342ec.zip
Fixes for measure LPE and speed path based LPE operations
(bzr r15302)
Diffstat (limited to 'src/live_effects/lpe-path_length.cpp')
-rw-r--r--src/live_effects/lpe-path_length.cpp10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/live_effects/lpe-path_length.cpp b/src/live_effects/lpe-path_length.cpp
index 8fbf9d420..6ec1e0ede 100644
--- a/src/live_effects/lpe-path_length.cpp
+++ b/src/live_effects/lpe-path_length.cpp
@@ -37,12 +37,6 @@ LPEPathLength::~LPEPathLength()
}
-void
-LPEPathLength::hideCanvasText() {
- // this is only used in sp-lpe-item.cpp to hide the canvas text when the effect is invisible
- info_text.param_setValue("");
-}
-
Geom::Piecewise<Geom::D2<Geom::SBasis> >
LPEPathLength::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & pwd2_in)
{
@@ -69,7 +63,9 @@ LPEPathLength::doEffect_pwd2 (Geom::Piecewise<Geom::D2<Geom::SBasis> > const & p
//g_print ("Area is zero\n");
}
//g_print ("Area: %f\n", area);
-
+ if (!this->isVisible()) {
+ info_text.param_setValue("");
+ }
return pwd2_in;
}