@ -44,7 +44,7 @@ from electrum import SimpleConfig, Wallet, WalletStorage
fromelectrumimportbmp,pyqrnative
fromamounteditimportAmountEdit
fromamounteditimportAmountEdit,MyLineEdit
fromnetwork_dialogimportNetworkDialog
fromqrcodewidgetimportQRCodeWidget
@ -656,7 +656,7 @@ class ElectrumWindow(QMainWindow):
self.payto_e.setCompleter(completer)
completer.setModel(self.completions)
self.message_e=QLineEdit()
self.message_e=MyLineEdit()
self.message_help=HelpButton(_('Description of the transaction (not mandatory).')+'\n\n'+_('The description is not sent to the recipient of the funds. It is stored in your wallet file, and displayed in the \'History\' tab.'))
grid.addWidget(QLabel(_('Description')),2,0)
grid.addWidget(self.message_e,2,1,1,3)
@ -882,11 +882,9 @@ class ElectrumWindow(QMainWindow):