summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changes/bug_handle_reconnecting1
-rw-r--r--src/leap/bitmask/gui/statuspanel.py2
2 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug_handle_reconnecting b/changes/bug_handle_reconnecting
new file mode 100644
index 00000000..c6465949
--- /dev/null
+++ b/changes/bug_handle_reconnecting
@@ -0,0 +1 @@
+ o Reword RECONNECTING state of openvpn. Fixes #3429. \ No newline at end of file
diff --git a/src/leap/bitmask/gui/statuspanel.py b/src/leap/bitmask/gui/statuspanel.py
index 8f5427ad..eb731927 100644
--- a/src/leap/bitmask/gui/statuspanel.py
+++ b/src/leap/bitmask/gui/statuspanel.py
@@ -421,6 +421,8 @@ class StatusPanelWidget(QtGui.QWidget):
self.set_eip_status(self.tr("Waiting to start..."))
elif status == "ASSIGN_IP":
self.set_eip_status(self.tr("Assigning IP"))
+ elif status == "RECONNECTING":
+ self.set_eip_status(self.tr("Reconnecting..."))
elif status == "ALREADYRUNNING":
# Put the following calls in Qt's event queue, otherwise
# the UI won't update properly