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:
authorTon Roosendaal <ton@blender.org>2004-11-01 00:11:03 +0300
committerTon Roosendaal <ton@blender.org>2004-11-01 00:11:03 +0300
commita89a4f531c0a5516b3f1abaf03b4c0350534d8d7 (patch)
treee1e7b527b7cd30b7ad0ab0262154bac307fc3992 /source/blender/src/editcurve.c
parentb590b8ecbaf6295100ec44e42bc52832819bbc6d (diff)
- Bug #1714; editmode undo error when ESC after extrude (missing undopush)
- Curve Join now moves all curves to 2D (if its 2D) - FGon extrude keeps FGon flags correctly - After Append undo-push added - In almost all Ipo editing commands; undo-push added - Icons in outliner now all consistant grey - Zoffs button had to 20 high (hmetal :)
Diffstat (limited to 'source/blender/src/editcurve.c')
-rw-r--r--source/blender/src/editcurve.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/src/editcurve.c b/source/blender/src/editcurve.c
index ff3fe1dae65..f82fb9f0787 100644
--- a/source/blender/src/editcurve.c
+++ b/source/blender/src/editcurve.c
@@ -318,6 +318,7 @@ void make_editNurb()
while(nu) {
newnu= duplicateNurb(nu);
+ test2DNurb(newnu); // after join, or any other creation of curve
BLI_addtail(&editNurb, newnu);
nu= nu->next;
}