On Mon, 2010-06-07 at 22:38 +0100, Rupert Swarbrick wrote:

> static gboolean
> on_delete (ClutterStage *stage, ClutterEvent *event, gpointer data)
> {
>   clutter_actor_destroy (CLUTTER_ACTOR (stage));
>   clutter_main_quit();
>   return FALSE;
> }

try not destroying the stage and returning TRUE. right now, you're
saying "I did not handle the event" and yet you just destroyed the stage
and quit the main loop.

you should actually use the ::destroy signal instead.

ciao,
 Emmanuele.

-- 
Emmanuele Bassi, Open Source Software Engineer
Intel Open Source Technology Center

-- 
To unsubscribe send a mail to [email protected]

Reply via email to