From f7793bd53cfed25709b783559af07d047b33bc65 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 17 Mar 2017 05:20:09 +1100 Subject: Correct reading missing property --- source/blender/windowmanager/intern/wm_files.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/windowmanager') diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c index 555017a9aac..f218fce1be3 100644 --- a/source/blender/windowmanager/intern/wm_files.c +++ b/source/blender/windowmanager/intern/wm_files.c @@ -1435,7 +1435,7 @@ static int wm_homefile_read_exec(bContext *C, wmOperator *op) if (wm_homefile_read(C, op->reports, from_memory, filepath)) { /* Load a file but keep the splash open */ - if (RNA_boolean_get(op->ptr, "use_splash")) { + if (!from_memory && RNA_boolean_get(op->ptr, "use_splash")) { WM_init_splash(C); } return OPERATOR_FINISHED; -- cgit v1.2.3