From a3611af26a3f996c3a011689e250027639dbb2d3 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Mon, 15 Sep 2014 16:28:29 +0200 Subject: [PATCH] signal to set fee field after payment request --- gui/qt/main_window.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index 49c6b98f..7e81823e 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -1226,6 +1226,8 @@ class ElectrumWindow(QMainWindow): self.payto_e.setText(pr.domain) self.amount_e.setText(self.format_amount(pr.get_amount())) self.message_e.setText(pr.get_memo()) + # signal to set fee + self.amount_e.textEdited.emit("") def payment_request_error(self): self.do_clear()