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:
authorgaiaclary <gaia.clary@machinimatrix.org>2013-11-27 23:48:07 +0400
committergaiaclary <gaia.clary@machinimatrix.org>2013-11-30 02:13:55 +0400
commit72272d2e4f4676c5c67483f1005251253edef15f (patch)
treec3fd07c5adf07ae4cab725f7f8088298983a93e8 /source/blender/windowmanager/intern/wm_init_exit.c
parente2429d6492bb58a87bcbee29a0f78a6ea6bb6dfa (diff)
D54: Added a filepath attribute to the read_homefile operator.
This attribute allows to open a blend file as an alternative start-up file. The attribute is only available from python. This is an example call: bpy.ops.wm.read_homefile(filepath='path/to/a/file.blend') This patch also changes readfile.c to ensure that unintentionally stored cursor states are not imported from the loaded file.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_init_exit.c')
-rw-r--r--source/blender/windowmanager/intern/wm_init_exit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/windowmanager/intern/wm_init_exit.c b/source/blender/windowmanager/intern/wm_init_exit.c
index 4e9b849af40..63aa3ce6811 100644
--- a/source/blender/windowmanager/intern/wm_init_exit.c
+++ b/source/blender/windowmanager/intern/wm_init_exit.c
@@ -159,7 +159,7 @@ void WM_init(bContext *C, int argc, const char **argv)
BLF_lang_init();
/* get the default database, plus a wm */
- wm_homefile_read(C, NULL, G.factory_startup);
+ wm_homefile_read(C, NULL, G.factory_startup, NULL);
BLF_lang_set(NULL);