Browse Source

Fix bug.

master
Neil Booth 10 years ago
parent
commit
ebddbcb805
  1. 5
      plugins/exchange_rate.py

5
plugins/exchange_rate.py

@ -323,8 +323,9 @@ class Plugin(BasePlugin):
else: else:
return return
for window in self.gui.windows: if self.gui:
window.need_update.set() for window in self.gui.windows:
window.need_update.set()
def requires_settings(self): def requires_settings(self):
return True return True

Loading…
Cancel
Save