diff --git a/src/live_effects/lpe-fillet-chamfer.cpp b/src/live_effects/lpe-fillet-chamfer.cpp index 2d1e0d0a0490ddda0ec92e0a28c8e5ea3c820117..3d1fa50ab888452c246a881ad01f707f85f9b7eb 100644 --- a/src/live_effects/lpe-fillet-chamfer.cpp +++ b/src/live_effects/lpe-fillet-chamfer.cpp @@ -430,6 +430,10 @@ LPEFilletChamfer::doEffect_path(Geom::PathVector const &path_in) } } size_t tcurves = count_path_curves(pathv[path]); + if (tcurves < 2) { + path_out.push_back(pathv[path]); + continue; + } while (curve_it1 != curve_endit) { ++curve; size_t next_index = curve + 1;