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-12-22 22:21:45 +0300
committerTon Roosendaal <ton@blender.org>2004-12-22 22:21:45 +0300
commit59c0ec4b61a1e3c97969870be17a2adef46cccac (patch)
tree42500edfb3f60d4994355ca1a138af80e8146c57
parentc58ef8fa8fc0fd9eb9eee023cbaa8b21ab5530b9 (diff)
Last minute fix #2
Undo on SHIFT+backspace in edit of 3d Text object, caused text editing to stop working normal. (only added text in beginning)
-rw-r--r--source/blender/src/editfont.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editfont.c b/source/blender/src/editfont.c
index 6ece170cb23..fec40995a2c 100644
--- a/source/blender/src/editfont.c
+++ b/source/blender/src/editfont.c
@@ -699,7 +699,7 @@ static void undoFont_to_editFont(void *strv)
strncpy(textbuf, str+2, MAXTEXT);
cu->pos= *((short *)str);
-
+ cu->len= strlen(textbuf);
text_to_curve(G.obedit, 0);
makeDispList(G.obedit);