Merge pull request #632 from dpdtex/FixAccountComboWidth

Fixed bug with width of account combo box on bottom right.
This commit is contained in:
ThomasV 2014-03-27 16:42:18 +01:00
commit f1cc259b75
1 changed files with 1 additions and 0 deletions

View 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)