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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/BPY_menus.c b/source/blender/python/BPY_menus.c
index 11dfb4ad792..96b54439a0e 100644
--- a/source/blender/python/BPY_menus.c
+++ b/source/blender/python/BPY_menus.c
@@ -103,7 +103,7 @@ static int bpymenu_group_atoi( char *str )
return PYMENU_WEIGHTPAINT;
else if( !strcmp( str, "VertexPaint" ) )
return PYMENU_VERTEXPAINT;
- else if( !strcmp( str, "UvCalculation" ) )
+ else if( !strcmp( str, "UVCalculation" ) )
return PYMENU_UVCALCULATION;
/* "Misc" or an inexistent group name: use misc */
else
@@ -171,7 +171,7 @@ char *BPyMenu_group_itoa( short menugroup )
return "VertexPaint";
break;
case PYMENU_UVCALCULATION:
- return "UvCalculation";
+ return "UVCalculation";
break;
case PYMENU_MISC:
return "Misc";