From 10b5a30bc9c2e2c05a5ae23a796e482db6169f85 Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Wed, 12 Aug 2009 11:26:26 +0200 Subject: [PATCH] Make the share button insensitive when max_participants is set to 1 --- src/sugar/activity/widgets.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sugar/activity/widgets.py b/src/sugar/activity/widgets.py index 40c38ec4..9e87fab9 100644 --- a/src/sugar/activity/widgets.py +++ b/src/sugar/activity/widgets.py @@ -1,4 +1,4 @@ -# Copyright (C) 2009, Aleksey Lim +# Copyright (C) 2009, Aleksey Lim, Simon Schampijer # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -99,6 +99,8 @@ class ShareButton(RadioMenuButton): RadioMenuButton.__init__(self, **kwargs) self.props.palette = palette + if activity.max_participants == 1: + self.props.sensitive = False def __neighborhood_clicked_cb(self, button, activity): activity.share()