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>2018-05-31 13:49:13 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-05-31 13:51:47 +0300
commit46508430f8e362551dfb23d67ba160e895a64f75 (patch)
tree326a99194298d1338c6fdd1224bf3aaf85c06c19
parent23e375a281726878aab3e48c961a574fc15c5816 (diff)
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.
-rw-r--r--release/scripts/startup/bl_operators/wm.py1
1 files changed, 1 insertions, 0 deletions
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'},
)