remove unnecessary clutter

This commit is contained in:
ThomasV 2013-01-03 20:13:23 +01:00
parent 40509b7c61
commit 3bae4e9761
1 changed files with 0 additions and 9 deletions

View File

@ -1490,19 +1490,10 @@ class ElectrumWindow(QMainWindow):
d.setWindowTitle(_('Electrum Settings'))
d.setModal(1)
vbox = QVBoxLayout()
msg = _('Here are the settings of your wallet.') + '\n'\
+ _('For more explanations, click on the help buttons next to each field.')
label = QLabel(msg)
label.setFixedWidth(250)
label.setWordWrap(True)
label.setAlignment(Qt.AlignJustify)
tabs = QTabWidget(self)
vbox.addWidget(tabs)
vbox.addWidget(label)
tab = QWidget()
grid_wallet = QGridLayout(tab)
grid_wallet.setColumnStretch(0,1)