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:
authorCampbell Barton <ideasman42@gmail.com>2013-09-05 08:26:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-09-05 08:26:08 +0400
commit6fce3746377b726f41979479e9267c1a847b4145 (patch)
treea8042ed7d9b8a7bf574f87b8235f3137062e1ef3 /source/blender/makesrna/intern/rna_object_force.c
parenteea0b1688859900ce050ca9dd18a33af6584cc65 (diff)
simplify idprop reallocation with MEM_recallocN
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_force.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_force.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 298c420f75d..e40d0cca79e 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -861,7 +861,9 @@ static void rna_def_pointcache(BlenderRNA *brna)
prop = RNA_def_property(srna, "use_library_path", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_boolean_negative_sdna(prop, NULL, "flag", PTCACHE_IGNORE_LIBPATH);
- RNA_def_property_ui_text(prop, "Library Path", "Use this files path for the disk cache when library linked into another file. For local bakes per scene file, disable this option.");
+ RNA_def_property_ui_text(prop, "Library Path",
+ "Use this files path for the disk cache when library linked into another file. "
+ "For local bakes per scene file, disable this option");
RNA_def_property_update(prop, NC_OBJECT, "rna_Cache_idname_change");
prop = RNA_def_property(srna, "point_caches", PROP_COLLECTION, PROP_NONE);