animator: Remove redundant parenthesis
This commit is contained in:
parent
74301da8e7
commit
306385c2eb
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user