electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit 62201b37f59b8c10828958d2326e48f068d98449
parent 15e9991e2afdbe4bf1fd8d5fbd7a20fba91c489c
Author: Neil Booth <kyuupichan@gmail.com>
Date:   Wed, 23 Dec 2015 15:23:35 +0900

MacOSX fix

If these lines are the other way round, the buttons don't appear
on MacOSX!

Diffstat:
Mgui/qt/installwizard.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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_()