[Bf-blender-cvs] [06159e6a58] master: Correct unintended splash on loading startup

Campbell Barton noreply at git.blender.org
Mon Mar 20 02:41:33 CET 2017


Commit: 06159e6a5894443dd21a8d9081db6f4d5cc0b421
Author: Campbell Barton
Date:   Mon Mar 20 12:46:20 2017 +1100
Branches: master
https://developer.blender.org/rB06159e6a5894443dd21a8d9081db6f4d5cc0b421

Correct unintended splash on loading startup

===================================================================

M	source/blender/windowmanager/intern/wm_files.c

===================================================================

diff --git a/source/blender/windowmanager/intern/wm_files.c b/source/blender/windowmanager/intern/wm_files.c
index c5b3d02cbb..60a361122c 100644
--- a/source/blender/windowmanager/intern/wm_files.c
+++ b/source/blender/windowmanager/intern/wm_files.c
@@ -1469,7 +1469,7 @@ void WM_OT_read_homefile(wmOperatorType *ot)
 	RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);
 
 	/* So the splash can be kept open after loading a file (for templates). */
-	prop = RNA_def_boolean(ot->srna, "use_splash", true, "Splash", "");
+	prop = RNA_def_boolean(ot->srna, "use_splash", false, "Splash", "");
 	RNA_def_property_flag(prop, PROP_HIDDEN | PROP_SKIP_SAVE);
 
 	/* omit poll to run in background mode */




More information about the Bf-blender-cvs mailing list