From 343763e2a24203ada7695422849c2ec3d60974d9 Mon Sep 17 00:00:00 2001 From: Rafael Ortiz Date: Tue, 12 Jul 2011 00:23:54 +0000 Subject: 0002-Friendlier-name-for-recorded-journal-item-olpcau-792.patch by icarito --- diff --git a/pippy_app.py b/pippy_app.py index 04e7baa..406fa4d 100644 --- a/pippy_app.py +++ b/pippy_app.py @@ -73,11 +73,11 @@ class ScreencastActivity(ViewSourceActivity): # Status label. self.status = gtk.Label(_("Status: Stopped")) - hbox.pack_start(self.record, expand=False) - hbox.pack_start(self.stop, expand=False) - hbox.pack_start(self.status, expand=False) + hbox.pack_start(self.record, expand=False, padding=20) + hbox.pack_start(self.stop, expand=False, padding=20) + hbox.pack_start(self.status, expand=False, padding=20) - vbox.pack_start(hbox) + vbox.pack_start(hbox, expand=True, fill=False) self.set_canvas(vbox) self.show_all() @@ -147,7 +147,7 @@ class ScreencastActivity(ViewSourceActivity): print "no more record process" # The recording process exited self.status.set_text("Status: Stopped") - os.system('copy-to-journal /tmp/recordmydesktop.ogv -m video/ogg') + os.system('copy-to-journal /tmp/recordmydesktop.ogv -m video/ogg -t "My Screencast"') return False else: # Maybe we have new stderr. -- cgit v0.9.1