[Bf-blender-cvs] [aef88cd76a5] greasepencil-object: Fix chnaged lines by error in previous commit

Antonio Vazquez noreply at git.blender.org
Tue Nov 28 11:17:42 CET 2017


Commit: aef88cd76a586eefc8d2e98ce7a621dd4271bf66
Author: Antonio Vazquez
Date:   Tue Nov 28 11:17:29 2017 +0100
Branches: greasepencil-object
https://developer.blender.org/rBaef88cd76a586eefc8d2e98ce7a621dd4271bf66

Fix chnaged lines by error in previous commit

===================================================================

M	source/blender/editors/animation/anim_draw.c

===================================================================

diff --git a/source/blender/editors/animation/anim_draw.c b/source/blender/editors/animation/anim_draw.c
index fbc9d382af2..ac823a54663 100644
--- a/source/blender/editors/animation/anim_draw.c
+++ b/source/blender/editors/animation/anim_draw.c
@@ -511,11 +511,11 @@ static bool find_prev_next_keyframes(struct bContext *C, int *nextfra, int *prev
 
 	if (mask) {
 		MaskLayer *masklay = BKE_mask_layer_active(mask);
-		mask_to_keylist(&ads, masklay, &keys, false);
+		mask_to_keylist(&ads, masklay, &keys);
 	}
 
 	/* build linked-list for searching */
-	BLI_dlrbTree_linkedlist_sync(&keys, false);
+	BLI_dlrbTree_linkedlist_sync(&keys);
 
 	/* find matching keyframe in the right direction */
 	do {



More information about the Bf-blender-cvs mailing list