diff --git a/lib/gui_qt.py b/lib/gui_qt.py index 2a1012dc..f1780934 100644 --- a/lib/gui_qt.py +++ b/lib/gui_qt.py @@ -447,16 +447,16 @@ class ElectrumWindow(QMainWindow): grid.addWidget(self.amount_e, 3, 1, 1, 2) grid.addWidget(HelpButton(_('Amount to be sent.\n\nThe amount will be displayed in red if you do not have enough funds in your wallet. Note that if you have frozen some of your addresses, the available funds will be lower than your total balance.')), 3, 3) - self.nochange_cb = QCheckBox(_('Do not create change address')) - grid.addWidget(self.nochange_cb,5,1,1,4) - self.nochange_cb.setChecked(False) - self.nochange_cb.setHidden(not self.wallet.expert_mode) - self.fee_e = QLineEdit() grid.addWidget(QLabel(_('Fee')), 4, 0) grid.addWidget(self.fee_e, 4, 1, 1, 2) grid.addWidget(HelpButton(_('Bitcoin transactions are in general not free. A transaction fee is paid by the sender of the funds.\n\nThe amount of fee can be decided freely by the sender. However, transactions with low fees take more time to be processed.\n\nA suggested fee is automatically added to this field. You may override it. The suggested fee increases with the size of the transaction.')), 4, 3) + self.nochange_cb = QCheckBox(_('Do not create change address')) + grid.addWidget(self.nochange_cb,5,1,1,4) + self.nochange_cb.setChecked(False) + self.nochange_cb.setHidden(not self.wallet.expert_mode) + b = EnterButton(_("Send"), self.do_send) grid.addWidget(b, 6, 1)