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:
authorKen Hughes <khughes@pacific.edu>2009-05-26 04:14:22 +0400
committerKen Hughes <khughes@pacific.edu>2009-05-26 04:14:22 +0400
commit5f82855a07eb1cfbb89aba654c9c8f7da1544c5b (patch)
tree296de4e25fec0f5c385440252758c789f57ef9ed
parentbbed7918c891c928cb18cc38e2497e9209da9ad7 (diff)
Interface
--------- Fixing typo in TimeOffset tooltip.
-rw-r--r--source/blender/src/buttons_object.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/buttons_object.c b/source/blender/src/buttons_object.c
index edc8e2a56a1..a90dd0447e9 100644
--- a/source/blender/src/buttons_object.c
+++ b/source/blender/src/buttons_object.c
@@ -2768,7 +2768,7 @@ static void object_panel_anim(Object *ob)
uiBlockBeginAlign(block);
timeoffset_ui = give_timeoffset(ob);
- but = uiDefButF(block, NUM, REDRAWALL, "TimeOffset:", 24,35,115,20, &timeoffset_ui, -MAXFRAMEF, MAXFRAMEF, 100, 0, "Animation offset in frames for ipo's and dupligroup instances");
+ but = uiDefButF(block, NUM, REDRAWALL, "TimeOffset:", 24,35,115,20, &timeoffset_ui, -MAXFRAMEF, MAXFRAMEF, 100, 0, "Animation offset in frames for IPOs and dupligroup instances");
uiButSetFunc(but, object_panel_anim_timeoffset_callback, ob, &timeoffset_ui);
uiDefBut(block, BUT, B_AUTOTIMEOFS, "Auto", 139,35,34,20, 0, 0, 0, 0, 0, "Assign selected objects a timeoffset within a range, starting from the active object");