From f381aee83549a456a47f2d2a001f7215023a3117 Mon Sep 17 00:00:00 2001 From: ThomasV Date: Sat, 7 Jan 2017 09:31:09 +0100 Subject: [PATCH] make payment requests never expire by default --- gui/qt/main_window.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py index a4bad826..efde2dba 100644 --- a/gui/qt/main_window.py +++ b/gui/qt/main_window.py @@ -712,7 +712,7 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.expires_combo = QComboBox() self.expires_combo.addItems(map(lambda x:x[0], expiration_values)) - self.expires_combo.setCurrentIndex(1) + self.expires_combo.setCurrentIndex(3) self.expires_combo.setFixedWidth(self.receive_amount_e.width()) msg = ' '.join([ _('Expiration date of your request.'),