Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/graphics/icon.py
diff options
context:
space:
mode:
Diffstat (limited to 'sugar/graphics/icon.py')
-rw-r--r--sugar/graphics/icon.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/sugar/graphics/icon.py b/sugar/graphics/icon.py
index 84200e6..f5cc25d 100644
--- a/sugar/graphics/icon.py
+++ b/sugar/graphics/icon.py
@@ -18,19 +18,19 @@
import gtk
class Icon(gtk.Image):
- def __init__(self, icon_resource, size=gtk.ICON_SIZE_LARGE_TOOLBAR):
+ def __init__(self, name, size=gtk.ICON_SIZE_LARGE_TOOLBAR):
gtk.Image.__init__(self)
icon_theme = gtk.icon_theme_get_for_screen(self.get_screen())
icon_set = gtk.IconSet()
- normal_name = icon_resource
+ normal_name = name
if icon_theme.has_icon(normal_name):
source = gtk.IconSource()
source.set_icon_name(normal_name)
icon_set.add_source(source)
- inactive_name = icon_resource + '-inactive'
+ inactive_name = name + '-inactive'
if icon_theme.has_icon(inactive_name):
source = gtk.IconSource()
source.set_icon_name(inactive_name)