[clutter] Long-running clutter process with multiple consecutive stages

2010-06-07 Thread Rupert Swarbrick
Hi, I'm trying to set up some lisp bindings to clutter at the moment and there's one thing that doesn't really work yet. In lisp, the model is that you have one long-running process and (especially when developing) you run the 'app' several times. Problem is that I can't get the window to be

Re: [clutter] Long-running clutter process with multiple consecutive stages

2010-06-07 Thread Emmanuele Bassi
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