From 9cb2b747090990fc2301c6b64ef521892ab2644f Mon Sep 17 00:00:00 2001 From: necoro <> Date: Tue, 24 Apr 2007 20:23:54 +0000 Subject: add application icon and desktop file --- portato/gui/gtk/windows.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'portato/gui/gtk/windows.py') diff --git a/portato/gui/gtk/windows.py b/portato/gui/gtk/windows.py index 12b7a58..88d9a18 100644 --- a/portato/gui/gtk/windows.py +++ b/portato/gui/gtk/windows.py @@ -19,7 +19,7 @@ import gobject # our backend stuff from portato.helper import * -from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR +from portato.constants import CONFIG_LOCATION, VERSION, DATA_DIR, APP_ICON from portato.backend import flags, system from portato.backend.exceptions import * @@ -42,6 +42,7 @@ class Window: self.tree = gtk.glade.XML(GLADE_FILE, root = self.__class__.__name__) self.tree.signal_autoconnect(self) self.window = self.tree.get_widget(self.__class__.__name__) + self.window.set_icon_from_file(APP_ICON) @staticmethod def watch_cursor (func): @@ -115,7 +116,7 @@ A Portage-GUI This software is licensed under the terms of the GPLv2. Copyright (C) 2006-2007 René 'Necoro' Neumann <necoro@necoro.net> -Thanks to Fred for support and ideas :P +Icon created by wolfden """ % VERSION) view = self.tree.get_widget("pluginList") -- cgit v1.2.3-54-g00ecf