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:
authorIan Thompson <quornian@googlemail.com>2008-08-24 17:30:35 +0400
committerIan Thompson <quornian@googlemail.com>2008-08-24 17:30:35 +0400
commitbf0803c0c24a3db25b60b1114b30a08ee45d9d1f (patch)
tree236ab5bb04a3396037c87bf3715415bc12a77ca2 /source/blender/makesdna/DNA_text_types.h
parentd6a9f7f4850defeb13c994caecc6776adb782f08 (diff)
Added better grouping for text markers with a separate group field (instead of using flags). The lower two bytes of the group are used for python scripts while the upper two (or more) are reserved for internal grouping. Plenty either way.
Diffstat (limited to 'source/blender/makesdna/DNA_text_types.h')
-rw-r--r--source/blender/makesdna/DNA_text_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_text_types.h b/source/blender/makesdna/DNA_text_types.h
index 41ea0b23323..6ea5603ca4c 100644
--- a/source/blender/makesdna/DNA_text_types.h
+++ b/source/blender/makesdna/DNA_text_types.h
@@ -44,7 +44,8 @@ typedef struct TextLine {
typedef struct TextMarker {
struct TextMarker *next, *prev;
- int lineno, start, end, flags;
+ int lineno, start, end, pad1;
+ int group, flags;
char clr[4], pad[4];
} TextMarker;