diff --git a/ChangeLog b/ChangeLog index f5437ae65..525164ed4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-25 Emmanuele Bassi + + * clutter/clutter-main.c (emit_event): Fix the last commit + which inverted a condition. + 2008-02-25 Emmanuele Bassi * clutter/clutter-actor.c: Remove the usage of g_return_if_fail() diff --git a/clutter/clutter-main.c b/clutter/clutter-main.c index f848ff0d1..3b0f19f45 100644 --- a/clutter/clutter-main.c +++ b/clutter/clutter-main.c @@ -1189,7 +1189,7 @@ emit_event (ClutterEvent *event, } /* reentrancy check */ - if (lock == FALSE) + if (lock != FALSE) return; lock = TRUE;