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:
authorJeroen Bakker <jbakker>2020-10-20 17:55:50 +0300
committerJeroen Bakker <jeroen@blender.org>2020-10-20 18:06:13 +0300
commite05ce1ea2029a942ce0d9a9df018b36d0604f0d5 (patch)
tree9d526b2cbf5459d8438fc62a7a281a70fddbaee8 /source/blender/makesdna/DNA_userdef_types.h
parent239eb95ef879088d690eec331619c3ddabc595aa (diff)
UV/Image: Remove Legacy Drawing
With D8234 a new drawing method for UV/Image editor was introduced. For debugging reasons we left the old drawing method in the code base. This patch will remove the old drawing method. Reviewed By: Clément Foucault Differential Revision: https://developer.blender.org/D9011
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 954da51e3bf..1f39e803f12 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -626,7 +626,6 @@ typedef struct UserDef_Experimental {
/* Debug options, always available. */
char use_undo_legacy;
char use_cycles_debug;
- char use_image_editor_legacy_drawing;
char SANITIZE_AFTER_HERE;
/* The following options are automatically sanitized (set to 0)
* when the release cycle is not alpha. */
@@ -636,7 +635,7 @@ typedef struct UserDef_Experimental {
char use_tools_missing_icons;
char use_switch_object_operator;
char use_sculpt_tools_tilt;
- char _pad[6];
+ char _pad[7];
/** `makesdna` does not allow empty structs. */
} UserDef_Experimental;