From 62201b37f59b8c10828958d2326e48f068d98449 Mon Sep 17 00:00:00 2001 From: Neil Booth Date: Wed, 23 Dec 2015 15:23:35 +0900 Subject: [PATCH] MacOSX fix If these lines are the other way round, the buttons don't appear on MacOSX! --- gui/qt/installwizard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/installwizard.py b/gui/qt/installwizard.py index a54a47de..49674f8d 100644 --- a/gui/qt/installwizard.py +++ b/gui/qt/installwizard.py @@ -139,8 +139,8 @@ class InstallWizard(WindowModalDialog, MessageBoxMixin): button.setChecked(True) vbox.addStretch(1) - self.set_layout(vbox) vbox.addLayout(Buttons(CancelButton(self), OkButton(self, _('Next')))) + self.set_layout(vbox) self.show() self.raise_()