Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2012-09-04 13:21:26 (GMT)
committer Simon Schampijer <simon@laptop.org>2012-09-07 09:14:26 (GMT)
commit622f2dadefadd608f38de8838a45e85871f5c5fa (patch)
treea4abe697cff9c14096bd155fad13dc215b60ccdf /src
parent87166dd2ad2e06c145a4bf92987109d052cc75c7 (diff)
Launcher: pass correct arguments to the constructor of Gtk.Alignment
Passing all of the arguments [1] is required now. [1] http://developer.gnome.org/gtk3/3.4/GtkAlignment.html#gtk-alignment-new Signed-off-by: Manuel QuiƱones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org>
Diffstat (limited to 'src')
-rw-r--r--src/jarabe/view/launcher.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jarabe/view/launcher.py b/src/jarabe/view/launcher.py
index 7f3e1ea..429bd72 100644
--- a/src/jarabe/view/launcher.py
+++ b/src/jarabe/view/launcher.py
@@ -67,7 +67,7 @@ class LaunchWindow(Gtk.Window):
self.error_text.props.use_markup = True
footer.pack_start(self.error_text, False, True, 0)
- button_box = Gtk.Alignment.new(xalign=0.5)
+ button_box = Gtk.Alignment.new(0.5, 0, 0, 0)
button_box.show()
footer.pack_start(button_box, False, True, 0)
self.cancel_button = Gtk.Button(stock=Gtk.STOCK_STOP)