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:
authorSergey Sharybin <sergey.vfx@gmail.com>2017-09-28 14:13:09 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2017-09-28 14:13:09 +0300
commit7fdb9e168dcd35d2695007cc77b3b27034a21cd5 (patch)
tree614f5b6741644d6de394152724eb2d85c8d06c75 /source/blender/blenloader/intern/versioning_270.c
parent64de8c8f0de018f5d2b075db738d7b6322d6d21a (diff)
parent75e8e3779bcf59622b9e7c43529ca9f91b40a917 (diff)
Merge branch 'master' into blender2.8
Diffstat (limited to 'source/blender/blenloader/intern/versioning_270.c')
-rw-r--r--source/blender/blenloader/intern/versioning_270.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/source/blender/blenloader/intern/versioning_270.c b/source/blender/blenloader/intern/versioning_270.c
index 3ff51f5879e..8c414c31b81 100644
--- a/source/blender/blenloader/intern/versioning_270.c
+++ b/source/blender/blenloader/intern/versioning_270.c
@@ -1703,24 +1703,6 @@ void blo_do_versions_270(FileData *fd, Library *UNUSED(lib), Main *main)
}
}
}
-
- {
- Brush *br;
- br = (Brush *)BKE_libblock_find_name_ex(main, ID_BR, "Average");
- if (!br) {
- br = BKE_brush_add(main, "Average", OB_MODE_VERTEX_PAINT | OB_MODE_WEIGHT_PAINT);
- br->vertexpaint_tool = PAINT_BLEND_AVERAGE;
- br->ob_mode = OB_MODE_VERTEX_PAINT | OB_MODE_WEIGHT_PAINT;
- }
-
- br = (Brush *)BKE_libblock_find_name_ex(main, ID_BR, "Smear");
- if (!br) {
- br = BKE_brush_add(main, "Smear", OB_MODE_VERTEX_PAINT | OB_MODE_WEIGHT_PAINT);
- br->vertexpaint_tool = PAINT_BLEND_SMEAR;
- br->ob_mode = OB_MODE_VERTEX_PAINT | OB_MODE_WEIGHT_PAINT;
- }
- }
-
}
}