diff --git a/source/blender/blenloader/intern/versioning_290.c b/source/blender/blenloader/intern/versioning_290.c index c9f93d35eb3..819d077bf0a 100644 --- a/source/blender/blenloader/intern/versioning_290.c +++ b/source/blender/blenloader/intern/versioning_290.c @@ -1987,6 +1987,26 @@ void blo_do_versions_290(FileData *fd, Library *UNUSED(lib), Main *bmain) } FOREACH_NODETREE_END; } + + /* The CU_2D flag has been removed. */ + LISTBASE_FOREACH (Curve *, cu, &bmain->curves) { +#define CU_2D (1 << 3) + ListBase *nurbs = BKE_curve_nurbs_get(cu); + bool is_2d = true; + + LISTBASE_FOREACH (Nurb *, nu, nurbs) { + if (nu->flag & CU_2D) { + nu->flag &= ~CU_2D; + } + else { + is_2d = false; + } + } +#undef CU_2D + if (!is_2d && CU_IS_2D(cu)) { + cu->flag |= CU_3D; + } + } } /** @@ -2034,25 +2054,5 @@ void blo_do_versions_290(FileData *fd, Library *UNUSED(lib), Main *bmain) } } } - - /* The CU_2D flag has been removed. */ - LISTBASE_FOREACH (Curve *, cu, &bmain->curves) { -#define CU_2D (1 << 3) - ListBase *nurbs = BKE_curve_nurbs_get(cu); - bool is_2d = true; - - LISTBASE_FOREACH (Nurb *, nu, nurbs) { - if (nu->flag & CU_2D) { - nu->flag &= ~CU_2D; - } - else { - is_2d = false; - } - } -#undef CU_2D - if (!is_2d && CU_IS_2D(cu)) { - cu->flag |= CU_3D; - } - } } }