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@gmail.com>2013-12-18 15:02:31 +0400
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2013-12-18 15:02:31 +0400
commitf92bb6450571d6ac9ed31ccbd9d4d73a2c39b12e (patch)
tree04cb4cb28d776033b8769da5ddfd8ac651116093 /source/blender/makesdna
parent7214001cdb142cb2556135b1f6e35290c62b9a69 (diff)
Fix T37843: area split widget missing in python console editor.
Python was indirectly causing redraw tags during drawing, which interfered with the ARegion.drawrct, now ignore these during draw.
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/DNA_screen_types.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_screen_types.h b/source/blender/makesdna/DNA_screen_types.h
index 005b0bda041..d343b2b68fc 100644
--- a/source/blender/makesdna/DNA_screen_types.h
+++ b/source/blender/makesdna/DNA_screen_types.h
@@ -365,6 +365,7 @@ enum {
/* region do_draw */
#define RGN_DRAW 1
#define RGN_DRAW_PARTIAL 2
+#define RGN_DRAWING 4
#endif