Browse Source

If wallet does not exist, then it does not even attempt to read the config (read returns on IOError exception). Ergo a new wallet will not ever set the theme name and it will stay as None. We change this to a sensible default so new wallets have a themed GUI.

283
Amir Taaki 12 years ago
parent
commit
ca4473c620
  1. 2
      lib/wallet.py

2
lib/wallet.py

@ -290,7 +290,7 @@ class Wallet:
self.num_zeros = 0
self.master_public_key = ''
self.conversion_currency = None
self.theme = None
self.theme = "Cleanlook"
# saved fields
self.use_encryption = False

Loading…
Cancel
Save