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:
Diffstat (limited to 'source/blender/editors/transform/transform_mode_timetranslate.c')
-rw-r--r--source/blender/editors/transform/transform_mode_timetranslate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/transform/transform_mode_timetranslate.c b/source/blender/editors/transform/transform_mode_timetranslate.c
index ea002129d0c..801d79e3fc7 100644
--- a/source/blender/editors/transform/transform_mode_timetranslate.c
+++ b/source/blender/editors/transform/transform_mode_timetranslate.c
@@ -129,17 +129,17 @@ void initTimeTranslate(TransInfo *t)
initMouseInputMode(t, &t->mouse, INPUT_NONE);
- /* num-input has max of (n-1) */
+ /* Numeric-input has max of (n-1). */
t->idx_max = 0;
t->num.flag = 0;
t->num.idx_max = t->idx_max;
- /* initialize snap like for everything else */
+ /* Initialize snap like for everything else. */
t->snap[0] = t->snap[1] = 1.0f;
copy_v3_fl(t->num.val_inc, t->snap[0]);
t->num.unit_sys = t->scene->unit.system;
- /* No time unit supporting frames currently... */
+ /* No time unit supporting frames currently. */
t->num.unit_type[0] = B_UNIT_NONE;
}