From b1b2bab5c52864623ea44f05c0afe623cbfbd141 Mon Sep 17 00:00:00 2001 From: Michael Wozniak Date: Fri, 19 Apr 2013 10:27:48 -0400 Subject: [PATCH 1/1] fix for issue 184 --- gui/gui_lite.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/gui/gui_lite.py b/gui/gui_lite.py index f996fec..7f8a4b2 100644 --- a/gui/gui_lite.py +++ b/gui/gui_lite.py @@ -787,7 +787,7 @@ class MiniActuator: def set_configured_currency(self, set_quote_currency): """Set the inital fiat currency conversion country (USD/EUR/GBP) in the GUI to what it was set to in the wallet.""" - currency = self.wallet.config.get('conversion_currency') + currency = self.wallet.config.get('currency') # currency can be none when Electrum is used for the first # time and no setting has been created yet. if currency is not None: -- 1.7.1