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>2013-02-03 06:54:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-02-03 06:54:24 +0400
commitf0d4b85feffb625efb406d3fba81b076a3a1fc4f (patch)
tree46a5edb0a725c379ddde54453b47ad1ae105ca53 /source/blender/makesdna
parentad2b4c6e542d733fe3b771586d6fea6c12b6ed16 (diff)
improve BMesh api use from r54265, no need to do edge lookups from the faces verts since the face stores these already.
also remove ScrArea.cursor, historic runtime variable.
Diffstat (limited to 'source/blender/makesdna')
-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 ae8b341f536..ceae4e28d1f 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -143,9 +143,10 @@ typedef struct ScrArea {
short headertype; /* OLD! 0=no header, 1= down, 2= up */
short do_refresh; /* private, for spacetype refresh callback */
- short cursor, flag;
+ short flag;
short region_active_win; /* index of last used region of 'RGN_TYPE_WINDOW'
* runtuime variable, updated by executing operators */
+ short pad;
struct SpaceType *type; /* callbacks for this space type */