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/editmesh_mods.c
parente6060589ec9891a6b013f6f24c49f2539f8107a5 (diff)
Added some missing undo pushes for the UV editor and UV Face Select Mode.
Diffstat (limited to 'source/blender/src/editmesh_mods.c')
-rw-r--r--source/blender/src/editmesh_mods.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/editmesh_mods.c b/source/blender/src/editmesh_mods.c
index 2bd8880ef18..bfe4b7b652d 100644
--- a/source/blender/src/editmesh_mods.c
+++ b/source/blender/src/editmesh_mods.c
@@ -1692,6 +1692,7 @@ void editmesh_mark_seam(int clear)
}
eed= eed->next;
}
+ BIF_undo_push("Mark Seam");
}
else {
eed= em->edges.first;
@@ -1701,6 +1702,7 @@ void editmesh_mark_seam(int clear)
}
eed= eed->next;
}
+ BIF_undo_push("Clear Seam");
}
allqueue(REDRAWVIEW3D, 0);