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:
authorAndrea Weikert <elubie@gmx.net>2009-12-15 20:53:17 +0300
committerAndrea Weikert <elubie@gmx.net>2009-12-15 20:53:17 +0300
commit6ef7c3bb2bc4c59d000b3a8bacbfb0a27d2b5c55 (patch)
treef238a7d7b0c52e5fd7ae0019f2fc71a71658858f /source/blender/makesrna/intern/rna_screen.c
parent66880f62bbc7ea97e8d0cb81d7d576aa45e9a273 (diff)
fix: adding missing new area type RGN_TYPE_PREVIEW to rna enum.
Diffstat (limited to 'source/blender/makesrna/intern/rna_screen.c')
-rw-r--r--source/blender/makesrna/intern/rna_screen.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_screen.c b/source/blender/makesrna/intern/rna_screen.c
index 5311c80e45d..2471ce3c798 100644
--- a/source/blender/makesrna/intern/rna_screen.c
+++ b/source/blender/makesrna/intern/rna_screen.c
@@ -40,6 +40,7 @@ EnumPropertyItem region_type_items[] = {
{RGN_TYPE_TOOLS, "TOOLS", 0, "Tools", ""},
{RGN_TYPE_TEMPORARY, "TEMPORARY", 0, "Temporary", ""},
{RGN_TYPE_UI, "UI", 0, "UI", ""},
+ {RGN_TYPE_PREVIEW, "PREVIEW", 0, "Preview", ""},
{0, NULL, 0, NULL, NULL}};
#ifdef RNA_RUNTIME