mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 11:32:04 +00:00
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>
|
2008-02-25 Emmanuele Bassi <ebassi@openedhand.com>
|
||||||
|
|
||||||
* clutter/clutter-actor.c: Remove the usage of g_return_if_fail()
|
* clutter/clutter-actor.c: Remove the usage of g_return_if_fail()
|
||||||
|
@ -1189,7 +1189,7 @@ emit_event (ClutterEvent *event,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* reentrancy check */
|
/* reentrancy check */
|
||||||
if (lock == FALSE)
|
if (lock != FALSE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
lock = TRUE;
|
lock = TRUE;
|
||||||
|
Loading…
Reference in New Issue
Block a user