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>2010-11-22 16:32:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-11-22 16:32:43 +0300
commit71079a47d3b837ff04a31faa79296b678c50c1aa (patch)
tree5755549799756c1ab5684bb23be014408f9c0b1f /source/blender/editors/space_info
parent0191c2f7764a951d3bd996dfd5e47a6c0b8b56c0 (diff)
find filepaths operator had blend file and search path swapped.
Diffstat (limited to 'source/blender/editors/space_info')
-rw-r--r--source/blender/editors/space_info/info_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_info/info_ops.c b/source/blender/editors/space_info/info_ops.c
index 3ed4f07d150..daa6810db60 100644
--- a/source/blender/editors/space_info/info_ops.c
+++ b/source/blender/editors/space_info/info_ops.c
@@ -269,7 +269,7 @@ static int find_missing_files_exec(bContext *UNUSED(C), wmOperator *op)
char *path;
path= RNA_string_get_alloc(op->ptr, "filepath", NULL, 0);
- findMissingFiles(path, G.main->name);
+ findMissingFiles(G.main->name, path);
MEM_freeN(path);
return OPERATOR_FINISHED;