2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-main.c (emit_event): Fix the last commit which inverted a condition.
This commit is contained in:
parent
bcd9a6dcec
commit
b5bcee6c6c
@ -1,3 +1,8 @@
|
||||
2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-main.c (emit_event): Fix the last commit
|
||||
which inverted a condition.
|
||||
|
||||
2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-actor.c: Remove the usage of g_return_if_fail()
|
||||
|
@ -1189,7 +1189,7 @@ emit_event (ClutterEvent *event,
|
||||
}
|
||||
|
||||
/* reentrancy check */
|
||||
if (lock == FALSE)
|
||||
if (lock != FALSE)
|
||||
return;
|
||||
|
||||
lock = TRUE;
|
||||
|
Loading…
Reference in New Issue
Block a user