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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2009-05-20 18:46:49 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2009-05-20 18:46:49 +0400
commit0a13c162b14065fcc93b74befee397d080d6d630 (patch)
tree19801791a15a1b2e7f82d04ba04e72fd97925d93 /source/blender/makesdna/DNA_screen_types.h
parent8f620ea5f0881eaf3a88516030037371aa397443 (diff)
UI: added support for enable buttons in the panel header.
Diffstat (limited to 'source/blender/makesdna/DNA_screen_types.h')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 4a39744c1dc..418cc84205a 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -97,10 +97,11 @@ typedef struct Panel { /* the part from uiBlock that needs saved in file */
char panelname[64], tabname[64]; /* defined as UI_MAX_NAME_STR */
char drawname[64]; /* panelname is identifier for restoring location */
short ofsx, ofsy, sizex, sizey;
+ short labelofs, pad;
short flag, runtime_flag;
short control;
short snap;
- int sortorder, pad; /* panels are aligned according to increasing sortorder */
+ int sortorder; /* panels are aligned according to increasing sortorder */
struct Panel *paneltab; /* this panel is tabbed in *paneltab */
void *activedata; /* runtime for panel manipulation */
} Panel;