Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGonzalo Odiard <gonzalo@laptop.org>2012-09-04 14:26:32 (GMT)
committer Simon Schampijer <simon@laptop.org>2012-09-07 09:14:26 (GMT)
commitaa36dd1e20ff12fca8f45efbf6049efcba574509 (patch)
treec46b8e7c5992613f0e72b714e32973bde6165265 /src
parent0f8ad5d3f6a3a7cfdd2b9f1981222e9175d35177 (diff)
Intro window: add padding=0 as pack_start argument
With the dynamic bindings we need to pass now all the arguments to pack_start. Signed-off-by: Gonzalo Odiard <gonzalo@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/intro/window.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jarabe/intro/window.py b/src/jarabe/intro/window.py
index 93445b5..3c979fb 100644
--- a/src/jarabe/intro/window.py
+++ b/src/jarabe/intro/window.py
@@ -99,7 +99,7 @@ class _NamePage(_Page):
self._intro = intro
alignment = Gtk.Alignment.new(0.5, 0.5, 0, 0)
- self.pack_start(alignment, expand=True, fill=True)
+ self.pack_start(alignment, expand=True, fill=True, padding=0)
hbox = Gtk.HBox(spacing=style.DEFAULT_SPACING)
alignment.add(hbox)
@@ -132,7 +132,7 @@ class _ColorPage(_Page):
_Page.__init__(self)
vbox = Gtk.VBox(spacing=style.DEFAULT_SPACING)
- self.pack_start(vbox, expand=True, fill=False)
+ self.pack_start(vbox, expand=True, fill=False, padding=0)
self._label = Gtk.Label(label=_('Click to change color:'))
vbox.pack_start(self._label, True, True, 0)