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:45:07 (GMT)
commitc1cba44320b84f2e92576d67d6c9122e7b62e335 (patch)
tree8467bce5ba1b4c7444f88273956698e78968afb2
parent2571db3ace84f0240f55e332aab5c3df7c5f23c7 (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: