From 4c0e50011e77e05628be805932eb213e5bb4f209 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Wed, 22 May 2013 06:06:22 +0000 Subject: Fix #35461: Marker gets initialized to arbitrary position Use center of currently visible frame part instead of center of the whole frame for position of marker which is adding from toolbox. Used separate operator for this to keep operators more atomic and not confuse with lots of conflicting properties. --- source/blender/editors/space_clip/space_clip.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/space_clip/space_clip.c') diff --git a/source/blender/editors/space_clip/space_clip.c b/source/blender/editors/space_clip/space_clip.c index d4d2a1af380..fcb33474fa2 100644 --- a/source/blender/editors/space_clip/space_clip.c +++ b/source/blender/editors/space_clip/space_clip.c @@ -465,6 +465,7 @@ static void clip_operatortypes(void) /* markers */ WM_operatortype_append(CLIP_OT_add_marker); + WM_operatortype_append(CLIP_OT_add_marker_at_center); WM_operatortype_append(CLIP_OT_slide_marker); WM_operatortype_append(CLIP_OT_delete_track); WM_operatortype_append(CLIP_OT_delete_marker); -- cgit v1.2.3