commit f1cc259b75a8486f875ac29a6543dbd3f97fb2e8
parent be7d0445a6ae84e5f96d79befe933d77e4dace12
Author: ThomasV <thomasv1@gmx.de>
Date: Thu, 27 Mar 2014 16:42:18 +0100
Merge pull request #632 from dpdtex/FixAccountComboWidth
Fixed bug with width of account combo box on bottom right.
Diffstat:
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/gui/qt/main_window.py b/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)