commit 0e326387654d610a23a6a1e19094c2764d763582 parent 2ef7974897674f00747f3a04dba61383733ccfe0 Author: ThomasV <thomasv@electrum.org> Date: Wed, 4 Jan 2017 11:49:23 +0100 minor fix Diffstat:
M | gui/qt/main_window.py | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -2620,7 +2620,8 @@ class ElectrumWindow(QMainWindow, MessageBoxMixin, PrintError): self.fx.set_history_config(checked) self.history_list.refresh_headers() if self.fx.is_enabled() and checked: - self.fx.get_historical_rates() + # reset timeout to get historical rates + self.fx.timeout = 0 update_currencies() update_history_cb()