Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-04-30 23:36:29 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-04-30 23:36:29 (GMT)
commit1bd819cf53913ec08109c62b9345b85b0378ad98 (patch)
tree667185d991cba2ef291c91be0f4471b3589f37c9
parent403e329eaee6a792137ca637a36566803bdb0864 (diff)
Presentation changes
-rw-r--r--presentation.pngbin28621 -> 29667 bytes
-rw-r--r--presentation_es.pngbin29574 -> 30320 bytes
-rw-r--r--terronesweeper.py5
3 files changed, 4 insertions, 1 deletions
diff --git a/presentation.png b/presentation.png
index 65cb209..885c5ff 100644
--- a/presentation.png
+++ b/presentation.png
Binary files differ
diff --git a/presentation_es.png b/presentation_es.png
index 14853a6..2672f4f 100644
--- a/presentation_es.png
+++ b/presentation_es.png
Binary files differ
diff --git a/terronesweeper.py b/terronesweeper.py
index fe497e1..f09b240 100644
--- a/terronesweeper.py
+++ b/terronesweeper.py
@@ -454,10 +454,13 @@ class TerronesWeeper(activity.Activity):
self.set_toolbar_box(self.toolbarbox)
self.toolbarbox.show_all()
self.notebook = gtk.Notebook()
+ white_box = gtk.EventBox()
+ white_box.modify_bg(gtk.STATE_NORMAL, gtk.gdk.color_parse("white"))
self.current_widget = gtk.image_new_from_file(_("presentation.png"))
self.current_widget.show()
+ white_box.add(self.current_widget)
self.notebook.set_show_tabs(False)
- self.notebook.append_page(self.current_widget)
+ self.notebook.append_page(white_box)
self.notebook.show()
self.statusbar = gtk.Statusbar()
self.label = gtk.Label(_("Click on the terron of the toolbar to start."