minor fixes
authorthomasv <thomasv@gitorious>
Fri, 13 Sep 2013 11:56:33 +0000 (13:56 +0200)
committerthomasv <thomasv@gitorious>
Fri, 13 Sep 2013 11:56:33 +0000 (13:56 +0200)
gui/gui_classic/password_dialog.py
lib/network.py

index e849863..fd13897 100644 (file)
@@ -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)
index cb3f7ea..9663da4 100644 (file)
@@ -49,6 +49,7 @@ class Network(threading.Thread):
         self.callbacks = {}
         self.servers = []
         self.banner = ''
+        self.interface = None
 
 
     def register_callback(self, event, callback):