Browse Source

Update __init__.py (#4668)

Resolving the issue #4363
3.2.x
RGauthamRam 6 years ago
committed by ghost43
parent
commit
aac7a34405
  1. 3
      electrum/gui/qt/__init__.py

3
electrum/gui/qt/__init__.py

@ -260,7 +260,8 @@ class ElectrumGui:
return w
def close_window(self, window):
self.windows.remove(window)
if window in self.windows:
self.windows.remove(window)
self.build_tray_menu()
# save wallet path of last open window
if not self.windows:

Loading…
Cancel
Save