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:
authorMatt Ebb <matt@mke3.net>2006-12-14 13:43:13 +0300
committerMatt Ebb <matt@mke3.net>2006-12-14 13:43:13 +0300
commit4b99060cc3fc6ef4830df1aa19b49e40bb11c3e5 (patch)
tree4242ee0d0fc2e9145d893af8595353cc43d5cb71 /source/blender/src/editface.c
parent3a739d9bd201bba98be944bd41613eea43a4732e (diff)
* reverted and tweaked UV calculation menu after IRC discussion with Cam
Diffstat (limited to 'source/blender/src/editface.c')
-rw-r--r--source/blender/src/editface.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/source/blender/src/editface.c b/source/blender/src/editface.c
index f118c14bf25..81c77adfdde 100644
--- a/source/blender/src/editface.c
+++ b/source/blender/src/editface.c
@@ -1352,12 +1352,15 @@ void uv_autocalc_tface()
/* uvmenu, will add python items */
char uvmenu[4096]=MENUTITLE("UV Calculation")
+ MENUSTRING("Unwrap", UV_UNWRAP_MAPPING) "|%l|"
+
MENUSTRING("Cube Projection", UV_CUBE_MAPPING) "|"
MENUSTRING("Cylinder from View", UV_CYL_MAPPING) "|"
- MENUSTRING("Sphere from View", UV_SPHERE_MAPPING) "|"
- MENUSTRING("Unwrap (LSCM)", UV_UNWRAP_MAPPING) "|"
+ MENUSTRING("Sphere from View", UV_SPHERE_MAPPING) "|%l|"
+
MENUSTRING("Project From View", UV_WINDOW_MAPPING) "|"
- MENUSTRING("Project from View (bounds)",UV_BOUNDS_MAPPING) "|"
+ MENUSTRING("Project from View (Bounds)",UV_BOUNDS_MAPPING) "|%l|"
+
MENUSTRING("Reset", UV_RESET_MAPPING);
/* note that we account for the 10 previous entries with i+10: */