summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/app.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2015-09-18 16:29:48 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2015-09-18 16:29:48 -0300
commit68b9e59d695ae896e405fd5f98eb2953dd5c9a2e (patch)
tree5fc2b1d0fa0c42dc68a0e61243893d830f54a5db /src/leap/bitmask/gui/app.py
parent978cbcc4c124fe3dcf05283d0790b828e072be25 (diff)
[bug] track soledad ready state on a shared place
Connecting to the `soledad_bootstrap_finished` signal is not enough since the password change window is created after the signal is emitted, that way we were not able to tell when soledad is ready to be used. - Resolves: #7474
Diffstat (limited to 'src/leap/bitmask/gui/app.py')
-rw-r--r--src/leap/bitmask/gui/app.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/app.py b/src/leap/bitmask/gui/app.py
index 02357b2b..97fd0549 100644
--- a/src/leap/bitmask/gui/app.py
+++ b/src/leap/bitmask/gui/app.py
@@ -43,6 +43,8 @@ class App(QtGui.QWidget):
self.signaler = LeapSignaler()
self.signaler.start()
+ self.soledad_started = False
+
# periodically check if the backend is alive
self._backend_checker = QtCore.QTimer(self)
self._backend_checker.timeout.connect(self._check_backend_status)