From: Amir Taaki Date: Sun, 8 Jul 2012 09:53:49 +0000 (+0100) Subject: restore current path after modifying it. X-Git-Url: https://git.novaco.in/?a=commitdiff_plain;h=c10bacca28087af54b9b6e51d0a8ffd39db35b75;p=electrum-nvc.git restore current path after modifying it. --- diff --git a/lib/gui_lite.py b/lib/gui_lite.py index 1c69291..556a683 100644 --- a/lib/gui_lite.py +++ b/lib/gui_lite.py @@ -48,6 +48,9 @@ class ElectrumGui: def __init__(self, wallet): self.wallet = wallet self.app = QApplication(sys.argv) + # Should probably not modify the current path but instead + # change the behaviour of rsrc(...) + self.old_path = QDir.currentPath() cd_data_dir() with open(rsrc("style.css")) as style_file: self.app.setStyleSheet(style_file.read()) @@ -57,6 +60,10 @@ class ElectrumGui: self.mini = MiniWindow(actuator, self.expand) driver = MiniDriver(self.wallet, self.mini) + # Reset path back to original value now that loading the GUI + # is completed. + QDir.setCurrent(self.old_path) + if url: self.set_url(url)