diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-09-01 16:10:04 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-09-01 16:10:04 -0300 |
commit | 2085475e3b5ac44b82d8bf7d98b30a67e5c42a61 (patch) | |
tree | b760be87e064a4a3f87a0e6493c66b4ac6b2f3b0 /src/leap/bitmask | |
parent | 6517b9c83b17993b6cf1a7a19eb0a17db6f17a05 (diff) |
Improve mail UI until we have a proper state machine
Diffstat (limited to 'src/leap/bitmask')
-rw-r--r-- | src/leap/bitmask/gui/statuspanel.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/statuspanel.py b/src/leap/bitmask/gui/statuspanel.py index 9352eb04..49d7e24a 100644 --- a/src/leap/bitmask/gui/statuspanel.py +++ b/src/leap/bitmask/gui/statuspanel.py @@ -591,6 +591,11 @@ class StatusPanelWidget(QtGui.QWidget): :param req: Request type :type req: leap.common.events.events_pb2.SignalRequest """ + # We want to ignore this kind of events once everything has + # started + if self._smtp_started and self._imap_started: + return + self.ui.lblMailStatus.setText(self.tr("Starting...")) ext_status = "" |