tset window.app in constructor - electrum - Electrum Bitcoin wallet
HTML git clone https://git.parazyd.org/electrum
DIR Log
DIR Files
DIR Refs
DIR Submodules
---
DIR commit cc48663d0e5840f9af214deec5f6e100d974ffc2
DIR parent 90a22f1a36293cd84addf46726b8b7d344c274d3
HTML Author: ThomasV <thomasv@gitorious>
Date: Thu, 19 Mar 2015 11:12:29 +0100
set window.app in constructor
Diffstat:
M gui/qt/__init__.py | 1 -
M gui/qt/main_window.py | 1 +
2 files changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py
t@@ -223,7 +223,6 @@ class ElectrumGui:
if url:
self.set_url(url)
- w.app = self.app
w.connect_slots(s)
w.update_wallet()
DIR diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py
t@@ -118,6 +118,7 @@ class ElectrumWindow(QMainWindow):
self.tray = gui_object.tray
self.go_lite = gui_object.go_lite
self.lite = None
+ self.app = gui_object.app
self.create_status_bar()
self.need_update = threading.Event()