Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/deviceicon/network.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/extensions/deviceicon/network.py b/extensions/deviceicon/network.py
index d42e043..42885b2 100644
--- a/extensions/deviceicon/network.py
+++ b/extensions/deviceicon/network.py
@@ -629,7 +629,9 @@ class WirelessDeviceView(ToolButton):
if state == network.NM_DEVICE_STATE_PREPARE or \
state == network.NM_DEVICE_STATE_CONFIG or \
state == network.NM_DEVICE_STATE_NEED_AUTH or \
- state == network.NM_DEVICE_STATE_IP_CONFIG:
+ state == network.NM_DEVICE_STATE_IP_CONFIG or \
+ state == network.NM_DEVICE_STATE_IP_CHECK or \
+ state == network.NM_DEVICE_STATE_SECONDARIES:
self._palette.set_connecting()
self._icon.props.pulsing = True
elif state == network.NM_DEVICE_STATE_ACTIVATED: