From 92033ce0f56538ecf68b37cfa6d555989e951896 Mon Sep 17 00:00:00 2001 From: Ray Strode Date: Thu, 26 Jul 2012 17:44:56 -0400 Subject: [PATCH] recorder: keep test-recorder alive until done recording Recording continues for some time after the recorder object is closed, since closing isn't a synchronous operation. This commit defers quiting the test-recorder application until the recording is finished. https://bugzilla.gnome.org/show_bug.cgi?id=680647 --- src/test-recorder.c | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/src/test-recorder.c b/src/test-recorder.c index 69f6f601f..599266a70 100644 --- a/src/test-recorder.c +++ b/src/test-recorder.c @@ -16,10 +16,20 @@ stop_recording_timeout (ClutterActor *stage) if (recorder) { shell_recorder_close (recorder); + + /* quit when the recorder finishes closing + */ + g_object_weak_ref (G_OBJECT (recorder), + (GWeakNotify) + clutter_actor_destroy, + stage); + g_object_unref (recorder); } - - clutter_actor_destroy (stage); + else + { + clutter_actor_destroy (stage); + } return FALSE; }