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:
authorBastien Montagne <montagne29@wanadoo.fr>2020-01-16 13:35:10 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2020-01-16 13:35:10 +0300
commit3ee6d74f933aa5779ffe8a4da348f07a23cc034e (patch)
tree48d99266bc1fe2431dc8bfec544afb9333839e87 /source/blender/blenloader
parent6c915097453646023874480546f5e7e68489752c (diff)
Fix T73125: Crash when opening a file containing a Line Style.
Dummy typo in rB2e6159a4.
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/intern/versioning_280.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/versioning_280.c b/source/blender/blenloader/intern/versioning_280.c
index d696aef76d4..6d4dd98729a 100644
--- a/source/blender/blenloader/intern/versioning_280.c
+++ b/source/blender/blenloader/intern/versioning_280.c
@@ -1034,7 +1034,7 @@ static void do_version_curvemapping_walker(Main *bmain, void (*callback)(CurveMa
/* Free Style */
LISTBASE_FOREACH (struct FreestyleLineStyle *, linestyle, &bmain->linestyles) {
- LISTBASE_FOREACH (LineStyleModifier *, m, &linestyle->thickness_modifiers) {
+ LISTBASE_FOREACH (LineStyleModifier *, m, &linestyle->alpha_modifiers) {
switch (m->type) {
case LS_MODIFIER_ALONG_STROKE:
callback(((LineStyleAlphaModifier_AlongStroke *)m)->curve);