Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@laptop.org>2013-02-18 09:15:14 (GMT)
committer Simon Schampijer <simon@laptop.org>2013-02-19 08:44:17 (GMT)
commite047cb093c76b83b0c94a05a97da7b377fa13425 (patch)
treef18360007b1a68b4d16371c31e6d105be0747a1b
parent976c3f5ef1202d586f65d90d959d123d33d70e07 (diff)
Frame, Wireless Device icon: make sure the Ssid is displayed in the connected state, SL #4430
In the connection status code we left out a few states of the connecting phase and therefore ended in the disconnected code path for those, hence giving false user feedback about the current state. Signed-off-by: Simon Schampijer <simon@laptop.org> Acked-by: Manuel QuiƱones <manuq@laptop.org>
-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 ab3b73f..5475407 100644
--- a/extensions/deviceicon/network.py
+++ b/extensions/deviceicon/network.py
@@ -556,7 +556,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: