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 Ajay Garg <ajay@activitycentral.com>2013-02-23 07:50:28 (GMT)
commit4bd368a7b5adc069a246113653c7b9535a5a10f8 (patch)
treed1cafa8548f8370cecc19b864d162e4c5455f9d5
parent5f67601e1e3105a0392b3527212a8cc2424e0b4e (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> Signed-off-by: Ajay Garg <ajay@activitycentral.com>
-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: