1
0
mirror of https://github.com/gryf/wicd.git synced 2025-12-22 22:27:59 +01:00

More fixes to the themeability of wicd

This commit is contained in:
David Paleino
2012-11-18 09:25:58 +01:00
parent 666a8de503
commit 9e5d6aab25
4 changed files with 16 additions and 19 deletions

View File

@@ -701,9 +701,11 @@ TX:'''))
image = gtk.Image()
if type_ == "__wired__":
image.set_from_icon_name("network-wired", 2)
image.set_from_icon_name("network-wired",
gtk.ICON_SIZE_SMALL_TOOLBAR)
else:
image.set_from_icon_name(self._get_img(n_id), 2)
image.set_from_icon_name(self._get_img(n_id),
gtk.ICON_SIZE_SMALL_TOOLBAR)
item.set_image(image)
del image
item.connect("activate", network_selected, type_, n_id)