summaryrefslogtreecommitdiff
path: root/src/leap/bitmask/gui/mainwindow.py
diff options
context:
space:
mode:
authorIvan Alejandro <ivanalejandro0@gmail.com>2013-08-21 13:02:44 -0300
committerIvan Alejandro <ivanalejandro0@gmail.com>2013-08-23 11:25:03 -0300
commit1801a78f9d05ea9d2f3c0321f3b1cc257d1ad278 (patch)
treed174a9f396d8fda8e4a925b6838f9ef3cc3aa154 /src/leap/bitmask/gui/mainwindow.py
parent7001408dd893b5e8302c4ff8a0dfe63f50e283fa (diff)
Add password change feature.
Diffstat (limited to 'src/leap/bitmask/gui/mainwindow.py')
-rw-r--r--src/leap/bitmask/gui/mainwindow.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py
index 5447d993..c832887a 100644
--- a/src/leap/bitmask/gui/mainwindow.py
+++ b/src/leap/bitmask/gui/mainwindow.py
@@ -288,6 +288,10 @@ class MainWindow(QtGui.QMainWindow):
################################# end Qt Signals connection ########
+ # Enable the password change when soledad is ready
+ self.soledad_ready.connect(
+ partial(self.ui.btnPreferences.setEnabled, True))
+
init_platform()
self._wizard = None
@@ -415,11 +419,7 @@ class MainWindow(QtGui.QMainWindow):
Displays the preferences window.
"""
- preferences = self._preferences_window
- if preferences is None:
- preferences = PreferencesWindow(self, self._srp_auth)
-
- preferences.show()
+ PreferencesWindow(self, self._srp_auth, self._soledad).show()
def _uncheck_logger_button(self):
"""
@@ -943,7 +943,6 @@ class MainWindow(QtGui.QMainWindow):
# panel
QtCore.QTimer.singleShot(1000, self._switch_to_status)
self._login_defer = None
- self.ui.btnPreferences.setEnabled(True)
else:
self._login_widget.set_enabled(True)