1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-19 20:38:00 +01:00

mark ioctl not supported in wicd-gtk

This commit is contained in:
Adam Blackburn
2010-01-09 15:30:55 -10:00
parent ce44fe85e1
commit 6825cf053d

View File

@@ -405,10 +405,12 @@ class PreferencesDialog(object):
for x in self.backends:
if x:
if x == 'ioctl':
x = 'ioctl NOT SUPPORTED'
self.backendcombo.append_text(x)
def be_combo_changed(self, combo):
""" Update the description label for the given backend. """
self.backendcombo.set_tooltip_text(
self.be_descriptions[combo.get_active_text()]
self.be_descriptions[self.backends[combo.get_active()]]
)