- 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 :)
This commit is contained in:
2004-10-31 21:11:03 +00:00
parent b590b8ecba
commit a89a4f531c
10 changed files with 1316 additions and 1294 deletions

View File

@@ -6634,7 +6634,8 @@ void transform(int mode)
tottrans= 0;
/* undo after transform, since it's storing current situations */
if(canceled==0)
/* extrude has no own undo-push, so on cancel we still insert it */
if(canceled==0 || strcmp(undostr, "Extrude")==0)
BIF_undo_push(undostr);
}