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:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2006-09-27 23:45:38 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2006-09-27 23:45:38 +0400
commit9dce6081c0b46e3da1f78a0fd336bafd13ec2f04 (patch)
tree232ae840163b55cf498f08f5e133212267f53508 /source/blender/src/header_image.c
parent0cd7ee76a43316255e12ec27f615ad9916334eee (diff)
Bugfix for a recent commit: live unwrapping behaved badly because
pinned uv charts were being auto rotated, they should just stay fixed.
Diffstat (limited to 'source/blender/src/header_image.c')
-rw-r--r--source/blender/src/header_image.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/header_image.c b/source/blender/src/header_image.c
index 990491a96d8..040d1e2757f 100644
--- a/source/blender/src/header_image.c
+++ b/source/blender/src/header_image.c
@@ -901,7 +901,7 @@ void image_buttons(void)
uiDefPulldownBut(block, image_viewmenu, NULL, "View", xco, -2, xmax-3, 24, "");
xco+= xmax;
- if((G.f & G_FACESELECT) && !(G.sima->flag & SI_DRAWTOOL)) {
+ if((G.f & G_FACESELECT) && !(ima && (G.sima->flag & SI_DRAWTOOL))) {
xmax= GetButStringLength("Select");
uiDefPulldownBut(block, image_selectmenu, NULL, "Select", xco, -2, xmax-3, 24, "");
xco+= xmax;
@@ -915,7 +915,7 @@ void image_buttons(void)
uiDefPulldownBut(block, image_imagemenu, NULL, menuname, xco, -2, xmax-3, 24, "");
xco+= xmax;
- if((G.f & G_FACESELECT) && !(G.sima->flag & SI_DRAWTOOL)) {
+ if((G.f & G_FACESELECT) && !(ima && (G.sima->flag & SI_DRAWTOOL))) {
xmax= GetButStringLength("UVs");
uiDefPulldownBut(block, image_uvsmenu, NULL, "UVs", xco, -2, xmax-3, 24, "");
xco+= xmax;