[Bf-blender-cvs] [c9e7d8030f5] master: Fix typo in versiong code

Pablo Dobarro noreply at git.blender.org
Wed Nov 27 16:50:07 CET 2019


Commit: c9e7d8030f55907e759650f75412d5e58cfce9c7
Author: Pablo Dobarro
Date:   Wed Nov 27 16:53:43 2019 +0100
Branches: master
https://developer.blender.org/rBc9e7d8030f55907e759650f75412d5e58cfce9c7

Fix typo in versiong code

===================================================================

M	source/blender/blenloader/intern/versioning_280.c

===================================================================

diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index 0b7ec8cf225..4af589bb29f 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -4204,7 +4204,7 @@ void blo_do_versions_280(FileData *fd, Library *UNUSED(lib), Main *bmain)
     }
 
     /* Pose brush smooth iterations */
-    if (!DNA_struct_elem_find(fd->filesdna, "Brush", "float", "pose_smooth_itereations")) {
+    if (!DNA_struct_elem_find(fd->filesdna, "Brush", "float", "pose_smooth_iterations")) {
       for (Brush *br = bmain->brushes.first; br; br = br->id.next) {
         br->pose_smooth_iterations = 4;
       }



More information about the Bf-blender-cvs mailing list