From cadf77d5ef97935885802d1841184d9a044d2249 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Mon, 30 Jun 2014 10:57:39 +0200 Subject: Fix T40862: numinput transform did not take into account scale_length. --- source/blender/editors/animation/anim_markers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/animation/anim_markers.c') diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c index e0592e594be..e519fc8bfef 100644 --- a/source/blender/editors/animation/anim_markers.c +++ b/source/blender/editors/animation/anim_markers.c @@ -846,7 +846,7 @@ static int ed_marker_move_modal(bContext *C, wmOperator *op, const wmEvent *even applyNumInput(&mm->num, &value); if (hasNumInput(&mm->num)) { - outputNumInput(&mm->num, str_tx); + outputNumInput(&mm->num, str_tx, scene->unit.scale_length); } else { BLI_snprintf(str_tx, sizeof(str_tx), "%d", (int)value); -- cgit v1.2.3