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:
authorBastien Montagne <bastien@blender.org>2020-04-17 16:11:16 +0300
committerBastien Montagne <bastien@blender.org>2020-04-17 16:13:25 +0300
commitc565d0764f75ba5a5bb51d5daa9152897db59eb8 (patch)
tree4f5f3814c64b93d89db024d01d0b896d3112a214 /source/blender/makesdna/DNA_userdef_types.h
parenta250be980a13d487099873bb5edf9c797b701ca1 (diff)
Enable new undo code by default.
Note that given how experimental is working currently, I had to rename and inverse the effect of the experimental undo flag, which will now instead activate legacy code when set.
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index e8f4cae573a..7a09059e344 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -618,7 +618,7 @@ typedef struct UserDef_FileSpaceData {
} UserDef_FileSpaceData;
typedef struct UserDef_Experimental {
- char use_undo_speedup;
+ char use_undo_legacy;
char use_menu_search;
/** `makesdna` does not allow empty structs. */
char _pad0[6];