tMerge pull request #632 from dpdtex/FixAccountComboWidth - electrum - Electrum Bitcoin wallet HTML git clone https://git.parazyd.org/electrum DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit f1cc259b75a8486f875ac29a6543dbd3f97fb2e8 DIR parent be7d0445a6ae84e5f96d79befe933d77e4dace12 HTML 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: M gui/qt/main_window.py | 1 + 1 file changed, 1 insertion(+), 0 deletions(-) --- DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py t@@ -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)