Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorTomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-27 11:17:50 (GMT)
committer Tomeu Vizoso <tomeu@tomeuvizoso.net>2007-08-27 11:17:50 (GMT)
commit59ee222f962e98368f6cf1dffaa30d630d726541 (patch)
treec7a7ecc615540c16d124c7268667affd4493d34b /sugar
parent4d87939eeff187faabc1373c4574c7d4d8980b33 (diff)
Fix comboboxes
Diffstat (limited to 'sugar')
-rw-r--r--sugar/graphics/combobox.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/sugar/graphics/combobox.py b/sugar/graphics/combobox.py
index 75573f0..5584267 100644
--- a/sugar/graphics/combobox.py
+++ b/sugar/graphics/combobox.py
@@ -85,7 +85,7 @@ class ComboBox(gtk.ComboBox):
width, height = gtk.icon_size_lookup(size)
if icon_name:
- file_name = self._get_real_name_from_theme(icon_name[6:], size)
+ file_name = self._get_real_name_from_theme(icon_name, size)
pixbuf = gtk.gdk.pixbuf_new_from_file_at_size(file_name, width, height)
else: