electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit cc48663d0e5840f9af214deec5f6e100d974ffc2
parent 90a22f1a36293cd84addf46726b8b7d344c274d3
Author: ThomasV <thomasv@gitorious>
Date:   Thu, 19 Mar 2015 11:12:29 +0100

set window.app in constructor

Diffstat:
Mgui/qt/__init__.py | 1-
Mgui/qt/main_window.py | 1+
2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui/qt/__init__.py b/gui/qt/__init__.py @@ -223,7 +223,6 @@ class ElectrumGui: if url: self.set_url(url) - w.app = self.app w.connect_slots(s) w.update_wallet() diff --git a/gui/qt/main_window.py b/gui/qt/main_window.py @@ -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()