1
0

qt send_tab: allow saving bip70 payment requests

probably got disabled in or around https://github.com/spesmilo/electrum/pull/7839 by accident
This commit is contained in:
SomberNight
2023-03-14 14:54:15 +00:00
parent f0f320b119
commit a6c4069617

View File

@@ -347,7 +347,8 @@ class SendTab(QWidget, MessageBoxMixin, Logger):
self.message_e.setText(pr.get_memo())
self.set_onchain(True)
self.max_button.setEnabled(False)
for btn in [self.send_button, self.clear_button]:
# note: allow saving bip70 reqs, as we save them anyway when paying them
for btn in [self.send_button, self.clear_button, self.save_button]:
btn.setEnabled(True)
# signal to set fee
self.amount_e.textEdited.emit("")