Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Goudey <h.goudey@me.com>2021-05-04 22:34:16 +0300
committerHans Goudey <h.goudey@me.com>2021-05-04 22:34:16 +0300
commit441160930b3e8163a381807fc76f39a18836a014 (patch)
treeedffbf73f214ef3253577092d5af2d3b2738ab29 /source/blender/blenkernel/BKE_spline.hh
parent5ea113a555bebffda14f27b8133dc23f54d9b0c6 (diff)
Fix: Incorrect type used for geometry nodes poly splines
Diffstat (limited to 'source/blender/blenkernel/BKE_spline.hh')
-rw-r--r--source/blender/blenkernel/BKE_spline.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/BKE_spline.hh b/source/blender/blenkernel/BKE_spline.hh
index 5409eb52d02..098abf6de65 100644
--- a/source/blender/blenkernel/BKE_spline.hh
+++ b/source/blender/blenkernel/BKE_spline.hh
@@ -426,7 +426,7 @@ class PolySpline final : public Spline {
private:
public:
SplinePtr copy() const final;
- PolySpline() : Spline(Type::Bezier)
+ PolySpline() : Spline(Type::Poly)
{
}
PolySpline(const PolySpline &other)