self.payto_help=HelpButton(_('Recipient of the funds.')+'\n\n'+_('You may enter a Bitcoin address, a label from your list of contacts (a list of completions will be proposed), or an alias (email-like address that forwards to a Bitcoin address)'))
grid.addWidget(QLabel(_('Pay to')),1,0)
@ -686,7 +686,7 @@ class ElectrumWindow(QMainWindow):
grid.addWidget(self.amount_e,4,1,1,2)
grid.addWidget(self.amount_help,4,3)
self.fee_e=AmountEdit(self.get_decimal_point)
self.fee_e=BTCAmountEdit(self.get_decimal_point)
grid.addWidget(QLabel(_('Fee')),5,0)
grid.addWidget(self.fee_e,5,1,1,2)
grid.addWidget(HelpButton(
@ -2256,7 +2256,7 @@ class ElectrumWindow(QMainWindow):