Changeset 9986 for trunk/src/gtkgui_helpers.py
- Timestamp:
- 07/22/08 23:08:52 (4 months ago)
- Files:
-
- 1 modified
-
trunk/src/gtkgui_helpers.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gtkgui_helpers.py
r9488 r9986 883 883 '''load an icon from the iconset in 16x16''' 884 884 iconset = gajim.config.get('iconset') 885 path = os.path.join(helpers.get_iconset_path(iconset), '16x16' + '/') 885 path = os.path.join(helpers.get_iconset_path(iconset), '16x16', '') 886 icon_list = _load_icon_list([icon_name], path) 887 return icon_list[icon_name] 888 889 def load_mood_icon(icon_name): 890 '''load an icon from the mood iconset in 16x16''' 891 iconset = gajim.config.get('mood_iconset') 892 path = os.path.join(helpers.get_mood_iconset_path(iconset), '') 886 893 icon_list = _load_icon_list([icon_name], path) 887 894 return icon_list[icon_name]
