[Bf-blender-cvs] [46508430f8e] blender2.8: Fix tool-system re-using last space type

Campbell Barton noreply at git.blender.org
Thu May 31 12:52:54 CEST 2018


Commit: 46508430f8e362551dfb23d67ba160e895a64f75
Author: Campbell Barton
Date:   Thu May 31 12:49:13 2018 +0200
Branches: blender2.8
https://developer.blender.org/rB46508430f8e362551dfb23d67ba160e895a64f75

Fix tool-system re-using last space type

Even though the regression is somehow caused by 03a80facfc781
this value shouldn't be reused so apply an unrelated fix.

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

M	release/scripts/startup/bl_operators/wm.py

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

diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py
index 084f6f84791..d15726991d2 100644
--- a/release/scripts/startup/bl_operators/wm.py
+++ b/release/scripts/startup/bl_operators/wm.py
@@ -62,6 +62,7 @@ rna_space_type_prop = EnumProperty(
             for e in bpy.types.Space.bl_rna.properties["type"].enum_items
            ),
         default='EMPTY',
+        options={'SKIP_SAVE'},
         )



More information about the Bf-blender-cvs mailing list