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:
authorBastien Montagne <montagne29@wanadoo.fr>2014-06-30 12:57:39 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2014-06-30 12:57:39 +0400
commitcadf77d5ef97935885802d1841184d9a044d2249 (patch)
tree69c10f127a46b5358128ae48bd116e732f7e169c /source/blender/editors/animation
parent61e1ea382b84c1c1d3cd4c03da37fa4c282ea1d4 (diff)
Fix T40862: numinput transform did not take into account scale_length.
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/anim_markers.c2
1 files changed, 1 insertions, 1 deletions
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);