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:
authorAntony Riakiotakis <kalast@gmail.com>2013-08-08 13:45:59 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-08-08 13:45:59 +0400
commita6c4c6dbc6bf1257088192469f0a33b01308f91b (patch)
treeea94360ff9beaab92b2c94aa6a5a75501a1a6cad
parent7cb1415530a6e9d531a3f11d3cefb7a9f3f1195d (diff)
Linking Brushes did not link the mask texture properly
-rw-r--r--source/blender/blenloader/intern/readfile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenloader/intern/readfile.c b/source/blender/blenloader/intern/readfile.c
index 261a6416f84..66fd58c42dc 100644
--- a/source/blender/blenloader/intern/readfile.c
+++ b/source/blender/blenloader/intern/readfile.c
@@ -10172,6 +10172,7 @@ static void expand_texture(FileData *fd, Main *mainvar, Tex *tex)
static void expand_brush(FileData *fd, Main *mainvar, Brush *brush)
{
expand_doit(fd, mainvar, brush->mtex.tex);
+ expand_doit(fd, mainvar, brush->mask_mtex.tex);
expand_doit(fd, mainvar, brush->clone.image);
}