Browse Source

Merge pull request #632 from dpdtex/FixAccountComboWidth

Fixed bug with width of account combo box on bottom right.
283
ThomasV 11 years ago
parent
commit
f1cc259b75
  1. 1
      gui/qt/main_window.py

1
gui/qt/main_window.py

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

Loading…
Cancel
Save