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>2007-09-27 20:47:08 +0400
committerCampbell Barton <ideasman42@gmail.com>2007-09-27 20:47:08 +0400
commit8c2ebc2decc22bb052242d7a305010b55fd52947 (patch)
tree9de8ca3bba217eb33ed9a2b100bfa906cf4d6e29 /source/blender/src/editsima.c
parent637a22bcc37f7da13e683555a6f6468e03cd4656 (diff)
glitches with UV tools fixed - P was grabbing, snap cursor to selection
didnt work, and constants for black and white were reversed (not user visible error)
Diffstat (limited to 'source/blender/src/editsima.c')
-rw-r--r--source/blender/src/editsima.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editsima.c b/source/blender/src/editsima.c
index 1b1c4c251d2..c1251f0dec1 100644
--- a/source/blender/src/editsima.c
+++ b/source/blender/src/editsima.c
@@ -1027,7 +1027,7 @@ void snap_menu_sima(void)
short event;
if( is_uv_tface_editing_allowed()==0 || !G.v2d) return; /* !G.v2d should never happen */
- event = pupmenu("Snap %t|Selection -> Pixels%x1|Selection -> Cursor%x2|Selection -> Adjacent Unselected%x3|Cursor-> Pixel%x3|Cursor-> Selection%x4");
+ event = pupmenu("Snap %t|Selection -> Pixels%x1|Selection -> Cursor%x2|Selection -> Adjacent Unselected%x3|Cursor -> Pixel%x4|Cursor -> Selection%x5");
switch (event) {
case 1:
if (snap_uv_sel_to_pixels()) {