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>2019-02-06 06:34:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-06 06:34:50 +0300
commit15ad01492e71cc318db4a7d2f038f2c9959aa2ce (patch)
treec9a8378149cf7122ab75e53e95b9bbd7ba09bdbf /source/blender/makesdna/DNA_userdef_types.h
parent7f6a4bc416d71e6f4af38453c07d4dba1c02e333 (diff)
Cleanup: remove deprecated/unused preferences DNA
Diffstat (limited to 'source/blender/makesdna/DNA_userdef_types.h')
-rw-r--r--source/blender/makesdna/DNA_userdef_types.h16
1 files changed, 1 insertions, 15 deletions
diff --git a/source/blender/makesdna/DNA_userdef_types.h b/source/blender/makesdna/DNA_userdef_types.h
index 0627210a19b..c9ada7e3637 100644
--- a/source/blender/makesdna/DNA_userdef_types.h
+++ b/source/blender/makesdna/DNA_userdef_types.h
@@ -164,9 +164,6 @@ typedef struct ThemeUI {
uiWidgetStateColors wcol_state;
- /** Deprecated, but we keep it for do_versions (2.66.1). */
- uiPanelColors panel;
-
char widget_emboss[4];
/* fac: 0 - 1 for blend factor, width in pixels */
@@ -176,7 +173,6 @@ typedef struct ThemeUI {
char editor_outline[4];
short pad[1];
- char iconfile[256]; // FILE_MAXFILE length
float icon_alpha;
float icon_saturation;
char _pad[4];
@@ -1003,7 +999,7 @@ typedef enum eText_Draw_Options {
/** Grease Pencil Settings.
* #UserDef.gp_settings */
typedef enum eGP_UserdefSettings {
- GP_PAINT_DOSMOOTH = (1 << 0),
+ // GP_PAINT_DOSMOOTH = (1 << 0), /* UNUSED */
GP_PAINT_DOSIMPLIFY = (1 << 1),
} eGP_UserdefSettings;
@@ -1047,16 +1043,6 @@ typedef enum eTimecodeStyles {
USER_TIMECODE_SUBRIP = 100,
} eTimecodeStyles;
-/* theme drawtypes */
-/* XXX: These are probably only for the old UI engine? */
-typedef enum eTheme_DrawTypes {
- TH_MINIMAL = 0,
- TH_ROUNDSHADED = 1,
- TH_ROUNDED = 2,
- TH_OLDSKOOL = 3,
- TH_SHADED = 4,
-} eTheme_DrawTypes;
-
/** #UserDef.ndof_flag (3D mouse options) */
typedef enum eNdof_Flag {
NDOF_SHOW_GUIDE = (1 << 0),