Fix: Text object custom profile bevel not written to file

The CurveProfile struct was only being written to the file for regular
curve objects. Caused by an incorrect merge of master before committing.
This commit is contained in:
Hans Goudey 2020-09-16 16:05:17 -05:00
parent 6ade522f27
commit 27660b3cd9
1 changed files with 3 additions and 3 deletions

View File

@ -186,10 +186,10 @@ static void curve_blend_write(BlendWriter *writer, ID *id, const void *id_addres
}
}
}
}
if (cu->bevel_profile != NULL) {
BKE_curveprofile_blend_write(writer, cu->bevel_profile);
}
if (cu->bevel_profile != NULL) {
BKE_curveprofile_blend_write(writer, cu->bevel_profile);
}
}
}