Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGonzalo Odiard <godiard@gmail.com>2012-05-16 18:07:19 (GMT)
committer Gonzalo Odiard <godiard@gmail.com>2012-05-16 18:07:19 (GMT)
commit706e63ec346e792b8e0d063c49a252cea0c985f1 (patch)
tree727c3612e50e4392a0611ec7b7265022b064a5af
parentf296d74639c9b545af5b440403047e40891a012e (diff)
Mimic padding in intro screen
-rw-r--r--activity.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/activity.py b/activity.py
index 6425626..358a955 100644
--- a/activity.py
+++ b/activity.py
@@ -109,7 +109,7 @@ class ImageCollectionViewer(gtk.VBox):
# Create bottom controls
bottom_toolbar = gtk.HBox()
- self.pack_start(bottom_toolbar, False, padding=5)
+ self.pack_start(bottom_toolbar, False, padding=style.zoom(30))
left_box = gtk.HBox()
bottom_toolbar.pack_start(left_box, False, padding=0)
@@ -135,7 +135,8 @@ class ImageCollectionViewer(gtk.VBox):
_next_button.set_image(image)
_next_button.set_label(_('Next'))
_next_button.connect('clicked', self.__next_clicked_cb)
- right_box.pack_end(_next_button, False, False, padding=5)
+ right_box.pack_end(_next_button, False, False,
+ padding=style.zoom(30))
# do the right_box and left_box have the same size
width = int(gtk.gdk.screen_width() / 4)