Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbcorrales <bcorrales@bcorrales-laptop.(none)>2010-07-17 17:27:37 (GMT)
committer bcorrales <bcorrales@bcorrales-laptop.(none)>2010-07-17 17:27:37 (GMT)
commit0d4cd1c507f508cdbdf4050d9a82a5b9d14c43a5 (patch)
tree3c0d8aae1fdbd5859ad83e27759593411e0cf159
parent48a5515b0dc1ede20e72ccae35357dcd1af2db4b (diff)
Incorporando barra de herramientas sugarHEADmaster
-rwxr-xr-xactivity.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/activity.py b/activity.py
index 39c061f..7332074 100755
--- a/activity.py
+++ b/activity.py
@@ -22,7 +22,12 @@ class SinDientes(activity.Activity):
self.set_title(_('Sin Dientes'))
self.connect('key-press-event', self._key_press_cb)
self.connect('destroy', self._destroy_cb)
-
+
+ #Barra de herramientas sugar
+ barra_herramientas = activity.ActivityToolbox(self)
+ self.set_toolbox(barra_herramientas)
+ barra_herramientas.show()
+
#contenedores
self.contenedor = gtk.VBox()
#self.ventana.add(self.contenedor)