From 4998d8c83efda6a86e7a657b886aa6681262bda0 Mon Sep 17 00:00:00 2001 From: Andrew Psaltis Date: Wed, 22 Apr 2009 12:13:06 -0400 Subject: [PATCH] Set the SVG wicd icon as the window icon in wicd-client. --- wicd/gui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/wicd/gui.py b/wicd/gui.py index 2a2e174..e6bdecb 100644 --- a/wicd/gui.py +++ b/wicd/gui.py @@ -149,6 +149,7 @@ class appGui(object): gladefile = os.path.join(wpath.share, "wicd.glade") self.wTree = gtk.glade.XML(gladefile) self.window = self.wTree.get_widget("window1") + self.window.set_icon_from_file(wpath.icons +'scalable/apps/wicd-client.svg') size = daemon.ReadWindowSize("main") width = size[0] height = size[1]