From 306385c2eb6ea3e0df406edc34227ca8c2622b7d Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 9 Aug 2010 08:50:18 +0100 Subject: [PATCH] animator: Remove redundant parenthesis --- clutter/clutter-animator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clutter/clutter-animator.c b/clutter/clutter-animator.c index 513af5f03..544081a91 100644 --- a/clutter/clutter-animator.c +++ b/clutter/clutter-animator.c @@ -1380,7 +1380,7 @@ clutter_animator_get_keys (ClutterAnimator *animator, ClutterAnimatorKey *key = k->data; if ((object == NULL || (object == key->object)) && - (property_name == NULL || ((property_name == key->property_name))) && + (property_name == NULL || (property_name == key->property_name)) && (progress < 0 || fabs (progress - key->progress) < PROGRESS_EPSILON)) { keys = g_list_prepend (keys, key);