Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/shell/hardware/nmclient.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-02-25 14:24:04 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-02-25 14:24:04 (GMT)
commite803f6534f3aaccdb31bc6b8aa7281a85e1e09f2 (patch)
tree460ac1a6d1e2517ea684ca3c36e5230d118fcc89 /shell/hardware/nmclient.py
parent10bfe004a8b5ab9176b9b26455f2da14ac052340 (diff)
Add ssid tooltip to the home too. Not working yet.
Diffstat (limited to 'shell/hardware/nmclient.py')
-rw-r--r--shell/hardware/nmclient.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/shell/hardware/nmclient.py b/shell/hardware/nmclient.py
index d1189f0..910b682 100644
--- a/shell/hardware/nmclient.py
+++ b/shell/hardware/nmclient.py
@@ -218,6 +218,9 @@ class Device(gobject.GObject):
def get_networks(self):
return self._networks.values()
+ def get_active_network(self):
+ return self.get_network(self._active_net)
+
def get_network(self, op):
if self._networks.has_key(op):
return self._networks[op]