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:
authorCampbell Barton <ideasman42@gmail.com>2006-12-14 06:43:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2006-12-14 06:43:02 +0300
commitc5fba51131edd41b2ed9ee717032ee29e5f64022 (patch)
tree3bd222802ba84d96ac93677ea0ff71b687f0bf10 /source/blender/python/BPY_menus.c
parent7a216f68fd3fad4a37056e5aabe3d8ced1920375 (diff)
object_apply_def - use new BPy Object API funcs, no error in localview
off_export - minor changes uv_archimap - cleanup. slightly slower but less duplicate code uv_from_adjacent - nothing BPY_menus - renamed py slot UvCalculation to UVCalculation to be consistant
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";