[gnome-shell] recorder: keep test-recorder alive until done recording



commit 92033ce0f56538ecf68b37cfa6d555989e951896
Author: Ray Strode <rstrode redhat com>
Date:   Thu Jul 26 17:44:56 2012 -0400

    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 files changed, 12 insertions(+), 2 deletions(-)
---
diff --git a/src/test-recorder.c b/src/test-recorder.c
index 69f6f60..599266a 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;
 }



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]