Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/lib/sugar/activity/activity.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sugar/activity/activity.py')
-rw-r--r--lib/sugar/activity/activity.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/sugar/activity/activity.py b/lib/sugar/activity/activity.py
index 19d67fe..2b227af 100644
--- a/lib/sugar/activity/activity.py
+++ b/lib/sugar/activity/activity.py
@@ -504,12 +504,16 @@ class Activity(Window, gtk.Container):
self.save()
elif pspec.name == 'max-participants':
self._max_participants = value
+ else:
+ Window.do_set_property(self, pspec, value)
def do_get_property(self, pspec):
if pspec.name == 'active':
return self._active
elif pspec.name == 'max-participants':
return self._max_participants
+ else:
+ return Window.do_get_property(self, pspec)
def get_id(self):
"""Returns the activity id of the current instance of your activity.