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>2010-07-14 02:21:59 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-14 02:21:59 +0400
commit03e638d1285b2a26902230772ae9261406fd6658 (patch)
tree44334ffbbe2cc7917c14fa24c244652e88f2a5f5 /source/blender/makesdna/DNA_curve_types.h
parentc5d6665cb3965cde556e58b182070a41a3956732 (diff)
- make duplis real wasnt redrawing
- small caps option for titles (doing manually is quite painful to watch).
Diffstat (limited to 'source/blender/makesdna/DNA_curve_types.h')
-rw-r--r--source/blender/makesdna/DNA_curve_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_curve_types.h b/source/blender/makesdna/DNA_curve_types.h
index 4819455fac6..2c4c6019556 100644
--- a/source/blender/makesdna/DNA_curve_types.h
+++ b/source/blender/makesdna/DNA_curve_types.h
@@ -177,7 +177,7 @@ typedef struct Curve {
short texflag, pad1; /* keep a short because of give_obdata_texspace() */
short drawflag, twist_mode, pad[2];
- float twist_smooth, pad2;
+ float twist_smooth, smallcaps_scale;
short pathlen, totcol;
short flag, bevresol;
@@ -329,6 +329,7 @@ typedef enum eBezTriple_KeyframeType {
#define CU_ITALIC 2
#define CU_UNDERLINE 4
#define CU_WRAP 8 /* wordwrap occured here */
+#define CU_SMALLCAPS 16
#endif