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:
authorNicholas Bishop <nicholasbishop@gmail.com>2007-01-18 07:08:01 +0300
committerNicholas Bishop <nicholasbishop@gmail.com>2007-01-18 07:08:01 +0300
commit33e43911369b7cd8a7d0342cb20feeb3cb8d28ff (patch)
treecb9ff22391e0ab4df19041abd96d100906748821 /source/blender/src/retopo.c
parent848e93ce4186ce4b2c65a462b1e07e488aafafbf (diff)
Bugfix for retopo paint: deleting a line didn't do an undo push.
Diffstat (limited to 'source/blender/src/retopo.c')
-rw-r--r--source/blender/src/retopo.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/retopo.c b/source/blender/src/retopo.c
index b2c04eb0f6d..847a5edd99b 100644
--- a/source/blender/src/retopo.c
+++ b/source/blender/src/retopo.c
@@ -574,6 +574,7 @@ char retopo_paint(const unsigned short event)
BLI_freelinkN(&rpd->lines, l);
if(rpd->nearest.line == l)
rpd->nearest.line= NULL;
+ BIF_undo_push("Erase line");
allqueue(REDRAWVIEW3D, 0);
}
break;