Fixed size issue on account combo box in status panel. If you started Electrum with...
authorDarrin Daigle <darrin@daiglefamily.org>
Thu, 27 Mar 2014 15:23:30 +0000 (10:23 -0500)
committerDarrin Daigle <darrin@daiglefamily.org>
Thu, 27 Mar 2014 15:23:30 +0000 (10:23 -0500)
gui/qt/main_window.py

index 73eccb4..640ee27 100644 (file)
@@ -1351,6 +1351,7 @@ class ElectrumWindow(QMainWindow):
         self.updatelabel = UpdateLabel(self.config, sb)
 
         self.account_selector = QComboBox()
+        self.account_selector.setSizeAdjustPolicy(QComboBox.AdjustToContents)
         self.connect(self.account_selector,SIGNAL("activated(QString)"),self.change_account)
         sb.addPermanentWidget(self.account_selector)