commit dcedb2d74fcd3babf7c7b23ab06268ff8823be7d
parent a4335cb25d5109344ed394dcd02957c0faddab4d
Author: thomasv <thomasv@gitorious>
Date: Fri, 13 Sep 2013 13:56:33 +0200
minor fixes
Diffstat:
2 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/gui/gui_classic/password_dialog.py b/gui/gui_classic/password_dialog.py
@@ -37,6 +37,8 @@ def make_password_dialog(self, wallet, msg):
grid = QGridLayout()
grid.setSpacing(8)
+ grid.setColumnMinimumWidth(0,300)
+ grid.setColumnStretch(1,1)
if wallet.use_encryption:
grid.addWidget(QLabel(_('Password')), 1, 0)
diff --git a/lib/network.py b/lib/network.py
@@ -49,6 +49,7 @@ class Network(threading.Thread):
self.callbacks = {}
self.servers = []
self.banner = ''
+ self.interface = None
def register_callback(self, event, callback):