Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@laptop.org>2011-07-27 15:02:33 (GMT)
committer Simon Schampijer <simon@laptop.org>2011-07-27 15:02:33 (GMT)
commit6703590e5b37f48e14aa16f3de9b3e33ce5d879b (patch)
treea394519f889cc7008babb09ecfccc0e64ae9d29c
parent1666527af2e8109f4cab35b3e0d3607f8cfcc58b (diff)
Remove KeepButton due to deprecationv3
-rw-r--r--activity.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/activity.py b/activity.py
index 5b06254..6ab8e29 100644
--- a/activity.py
+++ b/activity.py
@@ -28,7 +28,6 @@ from sugar.activity.widgets import ActivityToolbox
from sugar.activity.widgets import TitleEntry
from sugar.activity.widgets import StopButton
from sugar.activity.widgets import ShareButton
-from sugar.activity.widgets import KeepButton
class HelloWorldActivity(activity.Activity):
"""HelloWorldActivity class as specified in activity.info"""
@@ -55,10 +54,6 @@ class HelloWorldActivity(activity.Activity):
share_button = ShareButton(self)
toolbar_box.toolbar.insert(share_button, -1)
share_button.show()
-
- keep_button = KeepButton(self)
- toolbar_box.toolbar.insert(keep_button, -1)
- keep_button.show()
separator = gtk.SeparatorToolItem()
separator.props.draw = False