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>2016-02-01 03:55:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2016-02-01 03:56:24 +0300
commit25860e92c20de748ff1710b1352061d6a45bc9a9 (patch)
treee19015f7223c114d1c1b0db67f6e4ed81cfc7003 /source/blender/makesrna/intern/rna_main_api.c
parentaaecf91f9333a45676ca02277c08b161c1374dc0 (diff)
Docs: warning for loading duplicate movie-clips
Diffstat (limited to 'source/blender/makesrna/intern/rna_main_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_main_api.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_main_api.c b/source/blender/makesrna/intern/rna_main_api.c
index 9aeaa66de98..a8471e76ea8 100644
--- a/source/blender/makesrna/intern/rna_main_api.c
+++ b/source/blender/makesrna/intern/rna_main_api.c
@@ -1863,7 +1863,10 @@ void RNA_def_main_movieclips(BlenderRNA *brna, PropertyRNA *cprop)
/* load func */
func = RNA_def_function(srna, "load", "rna_Main_movieclip_load");
RNA_def_function_flag(func, FUNC_USE_REPORTS);
- RNA_def_function_ui_description(func, "Add a new movie clip to the main database from a file");
+ RNA_def_function_ui_description(
+ func, "Add a new movie clip to the main database from a file "
+ "(while ``check_existing`` is disabled for consistency with other load functions, "
+ "behavior with multiple movie-clips using the same file may incorrectly generate proxies)");
parm = RNA_def_string_file_path(func, "filepath", "Path", FILE_MAX, "", "path for the data-block");
RNA_def_property_flag(parm, PROP_REQUIRED);
RNA_def_boolean(func, "check_existing", false, "", "Using existing data-block if this file is already loaded");