From: cilix42 Date: Mon, 14 Jul 2008 11:18:18 +0000 (+0000) Subject: Enable knotholder handles for LPEAngleBisector now that they can be used simultaneous... X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=616b52f3bcf8f11ab4f61ef5a43ef61940769b91;p=inkscape.git Enable knotholder handles for LPEAngleBisector now that they can be used simultaneously with nodepath --- diff --git a/src/live_effects/lpe-angle_bisector.cpp b/src/live_effects/lpe-angle_bisector.cpp index a69b6913d..c7c7b5262 100644 --- a/src/live_effects/lpe-angle_bisector.cpp +++ b/src/live_effects/lpe-angle_bisector.cpp @@ -60,9 +60,8 @@ LPEAngleBisector::LPEAngleBisector(LivePathEffectObject *lpeobject) : registerParameter( dynamic_cast(&length_left) ); registerParameter( dynamic_cast(&length_right) ); - /* we disable the handles until we support both knotholders and nodepaths */ - //registerKnotHolderHandle(new AB::KnotHolderEntityLeftEnd(), _("Adjust the \"right\" end of the bisector")); - //registerKnotHolderHandle(new AB::KnotHolderEntityRightEnd(), _("Adjust the point of attachment of the bisector")); + registerKnotHolderHandle(new AB::KnotHolderEntityLeftEnd(), _("Adjust the \"right\" end of the bisector")); + registerKnotHolderHandle(new AB::KnotHolderEntityRightEnd(), _("Adjust the point of attachment of the bisector")); } LPEAngleBisector::~LPEAngleBisector()