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>2004-11-07 16:15:04 +0300
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2004-11-07 16:15:04 +0300
commit88534ee519f9e712839a876bb0b13165ec83904a (patch)
treea4fc3bcdf55ada1df69e7ef0b93793d4e1509fa8 /source/blender/src/unwrapper.c
parente6060589ec9891a6b013f6f24c49f2539f8107a5 (diff)
Added some missing undo pushes for the UV editor and UV Face Select Mode.
Diffstat (limited to 'source/blender/src/unwrapper.c')
-rw-r--r--source/blender/src/unwrapper.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/source/blender/src/unwrapper.c b/source/blender/src/unwrapper.c
index 68ef7cca919..d35bf024edc 100644
--- a/source/blender/src/unwrapper.c
+++ b/source/blender/src/unwrapper.c
@@ -1276,7 +1276,9 @@ void unwrap_lscm(void)
if(dopack) pack_seam_groups(me, groups, totgroup);
MEM_freeN(groups);
-
+
+ BIF_undo_push("UV lscm unwrap");
+
allqueue(REDRAWVIEW3D, 0);
allqueue(REDRAWIMAGE, 0);
}
@@ -1401,6 +1403,8 @@ void select_linked_tfaces_with_seams()
}
free_hash_edge_table(htable);
+ BIF_undo_push("Select linked UV face");
+
allqueue(REDRAWVIEW3D, 0);
allqueue(REDRAWIMAGE, 0);
}