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:
authorCampbell Barton <ideasman42@gmail.com>2015-05-20 13:01:33 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-05-20 14:58:33 +0300
commit77ef3f9041edea39b1d036e048a8ac35e388520d (patch)
tree337ac3716a6c7a69b53af1af5f2751f0071f1459 /source/blender/editors
parenteb6bab25ba9b71352769621b7e2f0a2df3dd0a4f (diff)
Fix T44717: use_negative_frames ignored /w graph-editor
D1303 by @barfot
Diffstat (limited to 'source/blender/editors')
-rw-r--r--source/blender/editors/space_graph/graph_ops.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_graph/graph_ops.c b/source/blender/editors/space_graph/graph_ops.c
index 3d1fa2cc008..f4cce29bda8 100644
--- a/source/blender/editors/space_graph/graph_ops.c
+++ b/source/blender/editors/space_graph/graph_ops.c
@@ -87,6 +87,7 @@ static void graphview_cursor_apply(bContext *C, wmOperator *op)
* NOTE: sync this part of the code with ANIM_OT_change_frame
*/
CFRA = RNA_int_get(op->ptr, "frame");
+ FRAMENUMBER_MIN_CLAMP(CFRA);
SUBFRA = 0.f;
BKE_sound_seek_scene(bmain, scene);