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
path: root/source
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2005-10-21 03:36:24 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2005-10-21 03:36:24 +0400
commitb3053c7426cb5c65c226c30143edfbf22a8e48b4 (patch)
treea999392348d3dd38f0e48028243f6e43c8adc903 /source
parent70024f7f62e360f8121f632a72921de2fba7159b (diff)
Bugfix: #3189, #3208, UV Mirror (MKEY) didn't work.
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editsima.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/blender/src/editsima.c b/source/blender/src/editsima.c
index 6a805cb88b9..6e717147bda 100644
--- a/source/blender/src/editsima.c
+++ b/source/blender/src/editsima.c
@@ -325,7 +325,10 @@ void transform_width_height_tface_uv(int *width, int *height)
void mirror_tface_uv(char mirroraxis)
{
- Mirror((short)mirroraxis);
+ if (mirroraxis == 'x')
+ Mirror(1); /* global x */
+ else if (mirroraxis == 'y')
+ Mirror(2); /* global y */
}
void mirrormenu_tface_uv(void)