diff --git a/src/live_effects/lpe-simplify.cpp b/src/live_effects/lpe-simplify.cpp index e6d6681f3fd685de13cbddfa2778d1abe98e3154..083090cdba49093a6fcaf942a6d40791764348c5 100644 --- a/src/live_effects/lpe-simplify.cpp +++ b/src/live_effects/lpe-simplify.cpp @@ -31,7 +31,7 @@ LPESimplify::LPESimplify(LivePathEffectObject *lpeobject) &wr, this, 360.) , helper_size(_("Handle size"), _("Size of the handles in the effect visualization (not editable)"), "helper_size", &wr, this, 10) , simplify_individual_paths(_("Paths separately"), _("When there are multiple paths in the selection, simplify each one separately."), "simplify_individual_paths", - &wr, this, false, "", INKSCAPE_ICON("on-outline"), INKSCAPE_ICON("off-outline")) + &wr, this, false) , simplify_just_coalesce(_("Just coalesce"), _("Simplify just coalesce"), "simplify_just_coalesce", &wr, this, false, "", INKSCAPE_ICON("on-outline"), INKSCAPE_ICON("off-outline")) { diff --git a/src/live_effects/lpe-simplify.h b/src/live_effects/lpe-simplify.h index 7f2956bcfdfe28ae1c7e939a88e85e177bba56cb..9356d4808bd370b76875da43250a7a4c65772b42 100644 --- a/src/live_effects/lpe-simplify.h +++ b/src/live_effects/lpe-simplify.h @@ -47,7 +47,7 @@ private: ScalarParam steps; ScalarParam smooth_angles; ScalarParam helper_size; - ToggleButtonParam simplify_individual_paths; + BoolParam simplify_individual_paths; ToggleButtonParam simplify_just_coalesce; double radius_helper_nodes;