Add ssid tooltip to the home too. Not working yet.

This commit is contained in:
Marco Pesenti Gritti
2007-02-25 15:24:04 +01:00
parent 10bfe004a8
commit e803f6534f
3 changed files with 13 additions and 1 deletions
+7
View File
@@ -27,3 +27,10 @@ class Device(device.Device):
def get_id(self):
return self._nm_device.get_op()
def get_name(self):
active_net = self._nm_device.get_active_network()
if active_net:
return active_net.get_ssid()
else:
return None