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:
Diffstat (limited to 'source/blender/python/BPY_menus.c')
-rw-r--r--source/blender/python/BPY_menus.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/python/BPY_menus.c b/source/blender/python/BPY_menus.c
index 40dd8543762..e71d06b4141 100644
--- a/source/blender/python/BPY_menus.c
+++ b/source/blender/python/BPY_menus.c
@@ -94,6 +94,8 @@ static int bpymenu_group_atoi( char *str )
return PYMENU_HELPSYSTEM;
else if( !strcmp( str, "Render" ) )
return PYMENU_RENDER;
+ else if( !strcmp( str, "System" ) )
+ return PYMENU_SYSTEM;
else if( !strcmp( str, "Object" ) )
return PYMENU_OBJECT;
else if( !strcmp( str, "Mesh" ) )
@@ -141,6 +143,9 @@ char *BPyMenu_group_itoa( short menugroup )
case PYMENU_RENDER:
return "Render";
break;
+ case PYMENU_SYSTEM:
+ return "System";
+ break;
case PYMENU_OBJECT:
return "Object";
break;