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>2008-04-23 18:04:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-04-23 18:04:05 +0400
commit4f49a3b906bd4974056ca734beda7241b70031dc (patch)
treec64ae47ea0432e7ca17b1279523827b23d5557f9 /source/blender/src/usiblender.c
parent3552afeef2998b927ac5828a1904bd6c2d5034b6 (diff)
added ipo script template from blenderartists forTe, made scripts refresh on load factory settings and replaced elysiun with blenderartist.org in headers
Diffstat (limited to 'source/blender/src/usiblender.c')
-rw-r--r--source/blender/src/usiblender.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/src/usiblender.c b/source/blender/src/usiblender.c
index 36bb36e0642..dfcfc0d57f7 100644
--- a/source/blender/src/usiblender.c
+++ b/source/blender/src/usiblender.c
@@ -641,6 +641,10 @@ int BIF_read_homefile(int from_memory)
BKE_reset_undo();
BKE_write_undo("original"); /* save current state */
+ /* if from memory, need to refresh python scripts */
+ if (from_memory) {
+ BPY_path_update();
+ }
return success;
}