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.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/python/BPY_menus.c b/source/blender/python/BPY_menus.c
index f2879f654c1..f43b5852a32 100644
--- a/source/blender/python/BPY_menus.c
+++ b/source/blender/python/BPY_menus.c
@@ -83,6 +83,8 @@ static int bpymenu_group_atoi (char *str)
else if (!strcmp(str, "Animation")) return PYMENU_ANIMATION;
else if (!strcmp(str, "Materials")) return PYMENU_MATERIALS;
else if (!strcmp(str, "UV")) return PYMENU_UV;
+ else if (!strcmp(str, "Utils")) return PYMENU_UTILS;
+ else if (!strcmp(str, "Tools")) return PYMENU_TOOLS;
/* "Misc" or an inexistent group name: use misc */
else return PYMENU_MISC;
}
@@ -113,6 +115,10 @@ char *BPyMenu_group_itoa (short menugroup)
break;
case PYMENU_UV:
return "UV";
+ case PYMENU_UTILS:
+ return "Utils";
+ case PYMENU_TOOLS:
+ return "Tools";
case PYMENU_MISC:
return "Misc";
break;