From 892c61e63a0d2fc7bb5bd0c9b128228429ac57f5 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Tue, 08 Aug 2006 10:08:16 +0000 Subject: Publish and use title for the activities model --- (limited to 'sugar/activity') diff --git a/sugar/activity/Activity.py b/sugar/activity/Activity.py index 9996120..745a6c7 100644 --- a/sugar/activity/Activity.py +++ b/sugar/activity/Activity.py @@ -212,4 +212,6 @@ class Activity(gtk.Window): def share(self): """Called to request the activity to share itself on the network.""" - self._service = self._pservice.share_activity(self, self._default_type) + properties = { 'title' : self.get_title() } + self._service = self._pservice.share_activity(self, self._default_type, + properties) -- cgit v0.9.1